Harsh123007 commited on
Commit
de38dd1
·
verified ·
1 Parent(s): 1590fc5

Update Dockerfile

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