mjpsm commited on
Commit
ca911c0
·
verified ·
1 Parent(s): 0ab23af

Update Dockerfile

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