newturok commited on
Commit
3ed3735
·
verified ·
1 Parent(s): bffdf27

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -28,6 +28,8 @@ ARG PYTORCH="2.4.0"
28
  ARG CUDA="121"
29
  RUN pip3 install --no-cache-dir -U torch==$PYTORCH torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu$CUDA
30
 
 
 
31
  # Clone the git repo and install requirements in the same RUN command to ensure they are in the same layer
32
  RUN git clone https://github.com/comfyanonymous/ComfyUI.git && \
33
  cd ComfyUI && \
@@ -39,8 +41,6 @@ COPY --chmod=755 start.sh /start.sh
39
  RUN pip3 install jupyterlab
40
  EXPOSE 8888
41
 
42
- WORKDIR /workspace
43
-
44
  EXPOSE 8188
45
 
46
  CMD [ "/start.sh" ]
 
28
  ARG CUDA="121"
29
  RUN pip3 install --no-cache-dir -U torch==$PYTORCH torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu$CUDA
30
 
31
+ WORKDIR /workspace
32
+
33
  # Clone the git repo and install requirements in the same RUN command to ensure they are in the same layer
34
  RUN git clone https://github.com/comfyanonymous/ComfyUI.git && \
35
  cd ComfyUI && \
 
41
  RUN pip3 install jupyterlab
42
  EXPOSE 8888
43
 
 
 
44
  EXPOSE 8188
45
 
46
  CMD [ "/start.sh" ]