Al1Abdullah commited on
Commit
e146f78
·
verified ·
1 Parent(s): 0d84eb5

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -9
Dockerfile DELETED
@@ -1,9 +0,0 @@
1
- FROM python:3.10-slim
2
- WORKDIR /app
3
- COPY requirements.txt .
4
- RUN pip install --no-cache-dir -r requirements.txt
5
- RUN pip cache purge
6
- COPY app.py .
7
- COPY templates/ templates/
8
- EXPOSE 7860
9
- CMD ["gunicorn", "--bind", "0.0.0.0:7860", "--workers", "1", "--threads", "8", "app:app"]