FROM runpod/stable-diffusion:comfy-ui-6.0.0 | |
RUN apt-get update | |
RUN pip install --upgrade pip | |
# Set the working directory | |
WORKDIR /workspace/ComfyUI | |
# Clone the repository and checkout the latest tag | |
RUN git pull | |
# Continue with other steps (e.g., build, install dependencies, etc.) | |