akiko19191 commited on
Commit
c5ce35f
·
verified ·
1 Parent(s): eeb7a2c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -13,4 +13,9 @@ COPY --chown=user ./requirements.txt requirements.txt
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . /app
16
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
 
 
 
 
13
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . /app
16
+ EXPOSE 7860
17
+ #ENTRYPOINT ["python"]
18
+ CMD ["cd", "/app", "&&", "python", "app.py" ]
19
+
20
+
21
+ #CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]