Spaces:
Paused
Paused
| FROM python:3.12-slim | |
| ENV PYTHONUNBUFFERED=1 \ | |
| PIP_NO_CACHE_DIR=1 | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| git \ | |
| libgl1 \ | |
| libglib2.0-0 \ | |
| && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /opt | |
| RUN git clone --depth 1 https://github.com/Comfy-Org/ComfyUI.git /opt/comfyui | |
| WORKDIR /opt/comfyui | |
| RUN pip install -r requirements.txt | |
| EXPOSE 8188 | |
| CMD ["python", "main.py", "--listen", "0.0.0.0", "--port", "8188"] | |