Client billing code push

This commit is contained in:
Pooja Fulari
2026-04-15 10:32:46 +05:30
commit 92670665c3
599 changed files with 9348 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt gunicorn
COPY . .
EXPOSE 5000
ENV FLASK_APP=run:app
ENV FLASK_ENV=development
CMD ["gunicorn", "-w", "2", "-b", "0.0.0.0:5000", "--timeout", "120", "run:app"]