Kousik-1504
Version 1.0 of the application has been developed
e80d1c2
Raw
History Blame Contribute Delete
177 Bytes
FROM python:3.13.9
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]