ivangabriele commited on
Commit
e0dec4c
·
verified ·
1 Parent(s): 319c079

ci(docker): add missing venv activation

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -35,6 +35,8 @@ RUN uv sync
35
 
36
  SHELL ["/usr/bin/bash", "-c"]
37
 
 
 
38
  # `7860` is the default port for Hugging Face Spaces running on Docker
39
  # https://huggingface.co/docs/hub/en/spaces-config-reference
40
  CMD ["python", "-m", "http.server", "--directory", "public", "7860"]
 
35
 
36
  SHELL ["/usr/bin/bash", "-c"]
37
 
38
+ RUN source .venv/bin/activate
39
+
40
  # `7860` is the default port for Hugging Face Spaces running on Docker
41
  # https://huggingface.co/docs/hub/en/spaces-config-reference
42
  CMD ["python", "-m", "http.server", "--directory", "public", "7860"]