Signe22 commited on
Commit
46248c8
·
verified ·
1 Parent(s): b4ab30e

Update Dockerfile

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