Yehor commited on
Commit
d9b9ec4
·
verified ·
1 Parent(s): 96fe515

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -47,14 +47,18 @@ COPY --chown=1001 . ${HOME}/app
47
 
48
  ENV UV_PYTHON_INSTALL_DIR=${HOME}/app/uv-pythons
49
 
50
- RUN wget -qO- https://astral.sh/uv/install.sh | sh
51
-
52
  WORKDIR ${HOME}/app
53
 
 
 
54
  RUN uv venv --python 3.13.2
55
 
56
  RUN uv pip install --no-cache-dir -r /home/hf-space/app/requirements.txt
57
 
58
  RUN chown -R hf-space:hf-space ${HOME}/app
59
 
 
 
 
 
60
  CMD ["uv", "run", "--no-cache", "--no-config", "app.py"]
 
47
 
48
  ENV UV_PYTHON_INSTALL_DIR=${HOME}/app/uv-pythons
49
 
 
 
50
  WORKDIR ${HOME}/app
51
 
52
+ RUN wget -qO- https://astral.sh/uv/install.sh | sh
53
+
54
  RUN uv venv --python 3.13.2
55
 
56
  RUN uv pip install --no-cache-dir -r /home/hf-space/app/requirements.txt
57
 
58
  RUN chown -R hf-space:hf-space ${HOME}/app
59
 
60
+ RUN ls -lh /home/hf-space/app/
61
+
62
+ RUN ls -lh /home/hf-space/app/uv-pythons
63
+
64
  CMD ["uv", "run", "--no-cache", "--no-config", "app.py"]