flux_v0 / Dockerfile
newturok's picture
Update Dockerfile
1fbdcbb verified
raw
history blame
368 Bytes
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.)