Skip to content

Commit 785ba06

Browse files
Updated ComfyUI
Updated the Dockerfile to use the latest PyTorch base image, the latest version of ComfyUI, and the latest version of the ComfyUI Manager.
1 parent dad5e7c commit 785ba06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
# This image is based on the latest official PyTorch image, because it already contains CUDA, CuDNN, and PyTorch
3-
FROM pytorch/pytorch:2.5.1-cuda12.4-cudnn9-runtime
3+
FROM pytorch/pytorch:2.6.0-cuda12.4-cudnn9-runtime
44

55
# Installs Git, because ComfyUI and the ComfyUI Manager are installed by cloning their respective Git repositories
66
RUN apt update --assume-yes && \
@@ -11,7 +11,7 @@ RUN apt update --assume-yes && \
1111
# Clones the ComfyUI repository and checks out the latest release
1212
RUN git clone https://github.com/comfyanonymous/ComfyUI.git /opt/comfyui && \
1313
cd /opt/comfyui && \
14-
git checkout tags/v0.3.7
14+
git checkout tags/v0.3.27
1515

1616
# Clones the ComfyUI Manager repository and checks out the latest release; ComfyUI Manager is an extension for ComfyUI that enables users to install
1717
# custom nodes and download models directly from the ComfyUI interface; instead of installing it to "/opt/comfyui/custom_nodes/ComfyUI-Manager", which
@@ -21,7 +21,7 @@ RUN git clone https://github.com/comfyanonymous/ComfyUI.git /opt/comfyui && \
2121
# removed; this way, the custom nodes are installed on the host machine
2222
RUN git clone https://github.com/ltdrdata/ComfyUI-Manager.git /opt/comfyui-manager && \
2323
cd /opt/comfyui-manager && \
24-
git checkout tags/2.55.5
24+
git checkout tags/3.31.8
2525

2626
# Installs the required Python packages for both ComfyUI and the ComfyUI Manager
2727
RUN pip install \

0 commit comments

Comments
 (0)