Yehor commited on
Commit
7a31058
·
verified ·
1 Parent(s): cfcf7f2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -4
Dockerfile CHANGED
@@ -52,10 +52,11 @@ RUN wget -qO- https://astral.sh/uv/install.sh | sh
52
  WORKDIR ${HOME}/app
53
 
54
  RUN uv venv --python 3.13.2
55
- RUN uv pip install --no-cache-dir -r /home/hf-space/app/requirements.txt
56
 
57
- RUN chown -R hf-space:hf-space ${HOME}/app
 
 
58
 
59
- RUN cat /home/hf-space/app/uv.toml
60
 
61
- CMD ["uv", "run", "app.py"]
 
52
  WORKDIR ${HOME}/app
53
 
54
  RUN uv venv --python 3.13.2
 
55
 
56
+ RUN source .venv/bin/activate
57
+
58
+ RUN pip install --no-cache-dir -r /home/hf-space/app/requirements.txt
59
 
60
+ RUN chown -R hf-space:hf-space ${HOME}/app
61
 
62
+ CMD ["python", "app.py"]