59 lines
2.6 KiB
Docker
59 lines
2.6 KiB
Docker
FROM intel/oneapi-runtime:latest
|
|
|
|
ENV PIP_BREAK_SYSTEM_PACKAGES=1
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
ca-certificates \
|
|
git \
|
|
python3 \
|
|
python3-pip \
|
|
libgl1 \
|
|
libglx-mesa0 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Create User Permissions
|
|
ARG DOCKER_USER=default_user
|
|
RUN useradd -m "$DOCKER_USER"
|
|
|
|
# Clone vladmandic's stable diffusion
|
|
RUN \
|
|
git clone --depth 1 https://github.com/comfyanonymous/ComfyUI
|
|
WORKDIR /ComfyUI
|
|
|
|
WORKDIR /ComfyUI/custom_nodes/
|
|
RUN git clone --depth 1 https://github.com/ltdrdata/ComfyUI-Manager /ComfyUI/custom_nodes/comfyui-manager && \
|
|
git clone --depth 1 https://github.com/SeanScripts/ComfyUI-Unload-Model.git /ComfyUI/custom_nodes/ComfyUI-Unload-Model && \
|
|
git clone --depth 1 https://github.com/ssitu/ComfyUI_UltimateSDUpscale --recursive /ComfyUI/custom_nodes/ComfyUI_UltimateSDUpscale && \
|
|
git clone --depth 1 https://github.com/ltdrdata/ComfyUI-Impact-Pack /ComfyUI/custom_nodes/ComfyUI-Impact-Pack && \
|
|
git clone --depth 1 https://github.com/ltdrdata/ComfyUI-Impact-Subpack /ComfyUI/custom_nodes/ComfyUI-Impact-Subpack && \
|
|
git clone --depth 1 https://github.com/talesofai/comfyui-browser /ComfyUI/custom_nodes/comfyui-browser && \
|
|
git clone --depth 1 https://github.com/SEkINVR/ComfyUI-SaveAs.git /ComfyUI/custom_nodes/ComfyUI-SaveAs
|
|
|
|
WORKDIR /ComfyUI
|
|
RUN pip install --no-cache-dir --break-system-packages torch==2.10.0.dev20250911+xpu torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/xpu
|
|
|
|
# Install Python dependencies
|
|
RUN pip install --no-cache-dir --break-system-packages -r requirements.txt && \
|
|
pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/comfyui-manager/requirements.txt && \
|
|
pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/ComfyUI-Impact-Pack/requirements.txt && \
|
|
pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/ComfyUI-Impact-Subpack/requirements.txt && \
|
|
pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/comfyui-browser/requirements.txt && \
|
|
pip install --no-cache-dir --break-system-packages -r /ComfyUI/custom_nodes/ComfyUI-SaveAs/requirements.txt && \
|
|
pip install --no-cache-dir --break-system-packages gitpython psutil
|
|
|
|
# Set ownership and move models directory
|
|
RUN chown -R $DOCKER_USER:$DOCKER_USER /ComfyUI && \
|
|
mv /ComfyUI/models /ComfyUI/models.orig
|
|
|
|
# Copy start script
|
|
COPY ./start.sh /usr/local/bin/
|
|
RUN chmod +x /usr/local/bin/start.sh
|
|
|
|
# Switch to non-root user
|
|
USER $DOCKER_USER
|
|
WORKDIR /ComfyUI
|
|
|
|
CMD ["/usr/local/bin/start.sh"]
|