From b9ca5e60edf1c7c4a2fc4dc2dc7c31561ce30070 Mon Sep 17 00:00:00 2001 From: Tim Pietrusky Date: Thu, 25 Jul 2024 11:53:03 +0200 Subject: [PATCH] fix: make sure to use the latest versions of all packages --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index adb99d3..25696b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,9 +25,8 @@ RUN git clone https://github.com/comfyanonymous/ComfyUI.git /comfyui WORKDIR /comfyui # Install ComfyUI dependencies -RUN pip3 install --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121 \ - && pip3 install --no-cache-dir xformers==0.0.21 \ - && pip3 install -r requirements.txt +RUN pip3 install --upgrade --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121 \ + && pip3 install --upgrade -r requirements.txt # Install runpod RUN pip3 install runpod requests