mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-09-13 18:27:11 +08:00
11 lines
228 B
Docker
11 lines
228 B
Docker
FROM python:3.12-slim
|
|
EXPOSE 8188
|
|
|
|
# Copy the repo and install required dependencies
|
|
WORKDIR /ComfyUI
|
|
COPY . .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# ComfyUI entrypoint
|
|
WORKDIR /ComfyUI
|
|
CMD [ "python", "main.py" ] |