Skip to content

Commit 3bd38f0

Browse files
committed
fix: use CMD instead of ENTRYPOINT
1 parent 244c4e0 commit 3bd38f0

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Dockerfile

+1-7
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@ FROM runpod/base:0.6.1-cuda12.2.0
44
# Only install absolutely necessary packages for your project
55
RUN apt-get update && apt-get install -y ffmpeg aria2 git unzip
66

7-
# Install Python dependencies
8-
RUN pip install --no-cache-dir torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121 && \
9-
pip install --no-cache-dir opencv-python imageio imageio-ffmpeg ffmpeg-python av runpod \
10-
xformers==0.0.25 torchsde==0.2.6 einops==0.8.0 diffusers==0.28.0 transformers==4.41.2 accelerate==0.30.1
11-
12-
137
# Clone the ComfyUI repository
148
RUN git clone https://github.com/comfyanonymous/ComfyUI /content/ComfyUI
159

@@ -28,4 +22,4 @@ RUN mkdir -p /content/ComfyUI/models/unet && \
2822
WORKDIR /
2923

3024
# Keep the base image's entrypoint
31-
ENTRYPOINT ["/start.sh"]
25+
CMD ["/start.sh"]

0 commit comments

Comments
 (0)