asadwaris's picture
Update Dockerfile
bc481ae
raw
history blame contribute delete
No virus
141 Bytes
FROM python:3.9
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 7860
CMD gunicorn --workers=4 --bind 0.0.0.0:7860 app:app