temp_docker / Dockerfile
Aditya2623's picture
Upload 3 files
029fc64 verified
Raw
History Blame Contribute Delete
193 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["gunicorn", "-w", "2", "-b", "0.0.0.0:7860", "app:app"]