AlyanAkram commited on
Commit
4a75b2b
·
verified ·
1 Parent(s): 520bbf6

Update Dockerfile

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