From a151df98f6f28d68b94504345897e182bfbcbfed Mon Sep 17 00:00:00 2001 From: Juan Date: Wed, 15 Apr 2026 13:50:02 +0200 Subject: [PATCH 1/2] Dockerfile : cuda 13 --- Dockerfile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..0b20c9304 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,31 @@ +FROM docker.io/nvidia/cuda:13.0.3-cudnn-runtime-ubuntu22.04 + +ENV PYTHONUNBUFFERED=1 +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt update +RUN apt install -y software-properties-common +RUN add-apt-repository -y ppa:deadsnakes/ppa +RUN apt update + +RUN apt install -y python3.12 python3.12-venv +RUN python3.12 -m ensurepip --upgrade +RUN python3.12 -m pip install --upgrade pip + +WORKDIR /app + +RUN apt install -y git libgl1 libglib2.0-0 + +RUN git clone https://github.com/comfyanonymous/ComfyUI.git . + +RUN git clone https://github.com/Comfy-Org/ComfyUI-Manager ./custom_nodes/comfyui‑manager + +RUN python3.12 -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu130 + +RUN python3.12 -m pip install --no-cache-dir -r requirements.txt + +RUN python3.12 -m pip install -r ./custom_nodes/comfyui‑manager/requirements.txt + +EXPOSE 8188 + +CMD ["python3.12", "main.py", "--listen", "0.0.0.0", "--enable-manager"] From 24f7dbc3c7c9511375a9212c5e28ab192903a654 Mon Sep 17 00:00:00 2001 From: Juan Date: Wed, 15 Apr 2026 14:23:47 +0200 Subject: [PATCH 2/2] ComfyUI-Manager bug fix --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0b20c9304..235b127ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,13 +18,13 @@ RUN apt install -y git libgl1 libglib2.0-0 RUN git clone https://github.com/comfyanonymous/ComfyUI.git . -RUN git clone https://github.com/Comfy-Org/ComfyUI-Manager ./custom_nodes/comfyui‑manager +RUN git clone https://github.com/Comfy-Org/ComfyUI-Manager ./custom_nodes/ComfyUI-Manager RUN python3.12 -m pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu130 RUN python3.12 -m pip install --no-cache-dir -r requirements.txt -RUN python3.12 -m pip install -r ./custom_nodes/comfyui‑manager/requirements.txt +RUN python3.12 -m pip install -r ./custom_nodes/ComfyUI-Manager/requirements.txt EXPOSE 8188