Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -20,6 +20,7 @@ WORKDIR /workspace/ComfyUI
|
|
| 20 |
RUN python3 -m venv .venv \
|
| 21 |
&& . .venv/bin/activate \
|
| 22 |
&& pip install --upgrade pip \
|
|
|
|
| 23 |
&& pip install huggingface_hub xformers!=0.0.18 \
|
| 24 |
&& pip install -r requirements.txt
|
| 25 |
|
|
|
|
| 20 |
RUN python3 -m venv .venv \
|
| 21 |
&& . .venv/bin/activate \
|
| 22 |
&& pip install --upgrade pip \
|
| 23 |
+
&& pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/cpu \
|
| 24 |
&& pip install huggingface_hub xformers!=0.0.18 \
|
| 25 |
&& pip install -r requirements.txt
|
| 26 |
|