Kripton12 commited on
Commit
2fb4dea
·
verified ·
1 Parent(s): 83b5ea5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -18,4 +18,4 @@ RUN pip install --no-cache-dir -r requirements.txt
18
  EXPOSE 8080
19
 
20
  # Run run.py when the container launches
21
- CMD ["python", "run.py"]
 
18
  EXPOSE 8080
19
 
20
  # Run run.py when the container launches
21
+ CMD [uvicorn run:main_app --host 0.0.0.0 --port 8888 --workers 4]