Adisri99 commited on
Commit
795e2cb
·
verified ·
1 Parent(s): 90f9113

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -10
Dockerfile DELETED
@@ -1,10 +0,0 @@
1
- FROM python:3.11-slim
2
- ENV PYTHONDONTWRITEBYTECODE=1
3
- ENV PYTHONUNBUFFERED=1
4
- ENV PORT=7860
5
- WORKDIR /app
6
- COPY requirements.txt .
7
- RUN pip install --no-cache-dir -r requirements.txt
8
- COPY . .
9
- EXPOSE 7860
10
- CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]