File size: 368 Bytes
2aeb6ea d72b796 1fbdcbb d72b796 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM runpod/stable-diffusion:comfy-ui-6.0.0
RUN apt-get update
# Use a base image with Git installed
FROM alpine:latest
# Install required packages
RUN apk add --no-cache git
# 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.)
|