-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile-intel
More file actions
13 lines (13 loc) · 790 Bytes
/
Dockerfile-intel
File metadata and controls
13 lines (13 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM sinfallas/base-python-uv:3.12
LABEL maintainer="[email protected]"
LABEL build_date="2026-02-28"
ENV DEBIAN_FRONTEND=noninteractive
ENV UV_SYSTEM_PYTHON=1
WORKDIR /app
RUN apt update -qq && apt -y dist-upgrade && apt -y install --no-install-recommends --no-install-suggests curl git && apt clean && apt -y autoremove && rm -rf /var/lib/{apt,dpkg,cache,log} && rm -rf /var/cache/* && rm -rf /var/log/apt/* && rm -rf /tmp/*
RUN git clone https://github.com/comfyanonymous/ComfyUI.git .
RUN uv pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/xpu
RUN uv pip install -r requirements.txt
RUN uv pip install -r manager_requirements.txt
EXPOSE 8188
CMD ["python","main.py","--listen","0.0.0.0","--front-end-version","Comfy-Org/ComfyUI_frontend@latest"]