bla commited on
Commit
366afff
·
verified ·
1 Parent(s): 35b0d25

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -57,5 +57,5 @@ RUN if [ "$DOWNLOAD_MODEL" = "true" ]; then \
57
 
58
  ENV DEVICE="cpu"
59
  # Run FastAPI server through entrypoint.sh
60
- CMD ["bash /app/start-cpu.sh"]
61
 
 
57
 
58
  ENV DEVICE="cpu"
59
  # Run FastAPI server through entrypoint.sh
60
+ CMD uv run --extra $DEVICE python -m uvicorn api.src.main:app --host 0.0.0.0 --port 8880 --log-level debug
61