Mansi-Yelkar/Reconcile-Razorpay
0
1FROM python:3.12-slim2 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY . .9 10# Grant full read/write permissions to /app for Hugging Face Spaces (UID 1000)11RUN chmod -R 777 /app12 13EXPOSE 786014ENV PORT=786015 16CMD ["python", "backend/app.py"]17 