Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -17,7 +17,8 @@ RUN apt-get update && \
|
|
17 |
|
18 |
RUN --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
|
19 |
--mount=type=bind,source=.python-version,target=.python-version \
|
20 |
-
uv
|
|
|
21 |
|
22 |
COPY . /app
|
23 |
|
|
|
17 |
|
18 |
RUN --mount=type=bind,source=pyproject.toml,target=pyproject.toml \
|
19 |
--mount=type=bind,source=.python-version,target=.python-version \
|
20 |
+
uv python install $(cat .python-version) \
|
21 |
+
uv pip install -r pyproject.toml
|
22 |
|
23 |
COPY . /app
|
24 |
|