MH0386 commited on
Commit
3e14e93
·
verified ·
1 Parent(s): 3d69eda

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. 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 pip install -r pyproject.toml --python $(cat .python-version)
 
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