trevorpfiz commited on
Commit
0a2029b
·
1 Parent(s): b42e995

change runtime command

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -28,5 +28,5 @@ EXPOSE 7860
28
  ENV GRADIO_SERVER_NAME="0.0.0.0"
29
  ENV GRADIO_SERVER_PORT="7860"
30
 
31
- # Default command
32
- CMD ["uv", "run", "python", "-m", "vlm_playground.app"]
 
28
  ENV GRADIO_SERVER_NAME="0.0.0.0"
29
  ENV GRADIO_SERVER_PORT="7860"
30
 
31
+ # Default command: run from the venv directly (no uv at runtime)
32
+ CMD ["python", "-m", "vlm_playground.app"]