Files
Client-Billing-software/Dockerfile
2026-04-15 10:32:46 +05:30

16 lines
276 B
Docker

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"]