Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -5
Dockerfile
CHANGED
@@ -47,18 +47,14 @@ COPY --chown=1001 . ${HOME}/app
|
|
47 |
|
48 |
WORKDIR ${HOME}/app
|
49 |
|
50 |
-
ENV UV_PYTHON_INSTALL_DIR=${HOME}/
|
51 |
|
52 |
RUN wget -qO- https://astral.sh/uv/install.sh | sh
|
53 |
|
54 |
-
RUN mkdir /home/hf-space/app/uv-pythons
|
55 |
-
|
56 |
RUN uv venv --python 3.13.2
|
57 |
|
58 |
RUN uv pip install --no-cache-dir -r /home/hf-space/app/requirements.txt
|
59 |
|
60 |
-
RUN chown -R $(whoami) /home/hf-space/app/uv-pythons
|
61 |
-
|
62 |
RUN ls -lha /home/hf-space/
|
63 |
RUN ls -lha /home/hf-space/app/
|
64 |
RUN ls -lha /home/hf-space/app/uv-pythons/cpython-3.13.2-linux-x86_64-gnu
|
|
|
47 |
|
48 |
WORKDIR ${HOME}/app
|
49 |
|
50 |
+
ENV UV_PYTHON_INSTALL_DIR=${HOME}/uv-pythons
|
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 ls -lha /home/hf-space/
|
59 |
RUN ls -lha /home/hf-space/app/
|
60 |
RUN ls -lha /home/hf-space/app/uv-pythons/cpython-3.13.2-linux-x86_64-gnu
|