Skip to content

Commit 8d41753

Browse files
committed
Pin uv to latest version 0.9.9
1 parent c5ebcf2 commit 8d41753

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

runner/docker/Dockerfile.live-base-scope

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apt update && apt install -yqq --no-install-recommends wget curl ca-certific
1515
conda config --set auto_activate_base false && \
1616
conda clean -a -y && \
1717
conda create -n comfystream python=$PYTHON_VERSION -y && \
18-
conda run -n comfystream pip install --no-cache-dir --upgrade pip==23.3.2 setuptools==69.5.1 wheel==0.43.0 uv && \
18+
conda run -n comfystream pip install --no-cache-dir --upgrade pip==23.3.2 setuptools==69.5.1 wheel==0.43.0 uv==0.9.9 && \
1919
conda clean -a -y && \
2020
apt purge -y --auto-remove wget curl && \
2121
apt clean && rm -rf /var/lib/apt/lists/*
@@ -26,6 +26,8 @@ RUN apt update && apt install -yqq --no-install-recommends curl ca-certificates
2626
apt install -yqq nodejs && \
2727
apt clean && rm -rf /var/lib/apt/lists/*
2828

29+
RUN conda run -n comfystream pip install --no-cache-dir diffusers==0.35.0 transformers==4.56.0
30+
2931
# Install Scope dependencies into the comfystream environment
3032
# Clone scope repo and install with uv
3133
# Note: --active flag ensures uv installs packages into the active conda environment instead of
@@ -34,7 +36,6 @@ ARG SCOPE_VERSION=main
3436
RUN git clone --depth 1 --branch ${SCOPE_VERSION} https://github.com/daydreamlive/scope.git /workspace/scope && \
3537
cd /workspace/scope && \
3638
conda run -n comfystream uv sync --frozen --active && \
37-
conda run -n comfystream pip install --no-cache-dir diffusers==0.35.0 transformers==4.56.0 && \
3839
cd frontend && \
3940
npm install && \
4041
npm run build && \

0 commit comments

Comments
 (0)