marquesafonso commited on
Commit
9f53601
·
1 Parent(s): 13f4dca

fix dockerfile user issue (3)

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -15,9 +15,8 @@ RUN apt-get update && apt-get install -y imagemagick && sed -i '91d' /etc/ImageM
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
  # Make port 8000 available to the world outside this container
18
- EXPOSE 8000
19
 
20
- # Run main.py when the container launches
21
- CMD ["python", "main.py"]
22
 
23
  USER 1001
 
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
  # Make port 8000 available to the world outside this container
18
+ EXPOSE 7680
19
 
20
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
21
 
22
  USER 1001