From 0445756d3222e474d2e8e0256ce99961b7189fba Mon Sep 17 00:00:00 2001 From: gitadmin Date: Mon, 22 Jun 2026 12:12:55 +0000 Subject: [PATCH] add x-flux-comfyui for IP-Adapter FLUX support --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 963ac86..5f7d1b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,10 @@ RUN cd /app/custom_nodes \ && git clone --depth 1 https://github.com/city96/ComfyUI-GGUF \ && pip install --no-cache-dir -r ComfyUI-GGUF/requirements.txt +RUN cd /app/custom_nodes \ + && git clone --depth 1 https://github.com/XLabsProject/x-flux-comfyui \ + && pip install --no-cache-dir -r x-flux-comfyui/requirements.txt + RUN useradd -u 1000 -m comfyui && chown -R 1000:1000 /app USER 1000