newturok commited on
Commit
df9ec43
·
verified ·
1 Parent(s): 49f972e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -12
Dockerfile CHANGED
@@ -28,21 +28,10 @@ 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
- COPY --chmod=755 start-ssh-only.sh /start.sh
32
- COPY --chmod=755 start-original.sh /start-original.sh
33
- COPY --chmod=755 comfyui-on-workspace.sh /comfyui-on-workspace.sh
34
- COPY --chmod=755 ai-toolkit-on-workspace.sh /ai-toolkit-on-workspace.sh
35
- COPY --chmod=755 check_files.sh /check_files.sh
36
-
37
  # Clone the git repo and install requirements in the same RUN command to ensure they are in the same layer
38
  RUN git clone https://github.com/comfyanonymous/ComfyUI.git && \
39
  cd ComfyUI && \
40
- pip3 install -r requirements.txt && \
41
- cd custom_nodes && \
42
- git clone https://github.com/ltdrdata/ComfyUI-Manager.git && \
43
- git clone https://github.com/pythongosssss/ComfyUI-Custom-Scripts.git && \
44
- cd /ComfyUI && \
45
- mkdir pysssss-workflows
46
 
47
  COPY --chmod=755 start.sh /start.sh
48
 
 
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 && \
34
+ pip3 install -r requirements.txt
 
 
 
 
 
35
 
36
  COPY --chmod=755 start.sh /start.sh
37