Skip to content

Commit 478115e

Browse files
committed
Updated Manager, removed cache from layers.
1 parent 54b2a3e commit 478115e

File tree

4 files changed

+8
-18
lines changed

4 files changed

+8
-18
lines changed

Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@ FROM pytorch/pytorch:2.7.0-cuda12.8-cudnn9-devel AS backend-dev
22

33
WORKDIR /workspace
44

5-
ENV __COMFYUI_DESKTOP_VERSION__="0.3.39"
5+
ENV __COMFYUI_DESKTOP_VERSION__="0.3.40"
66
ENV JUPYTER_PORT="3000"
77
ENV DEBIAN_FRONTEND="noninteractive"
8+
ENV PYTHONDONTWRITEBYTECODE=1
89

910
RUN apt update && apt install -y openssh-server
1011
COPY ./backend/ComfyUI ./ComfyUI
1112
COPY ./backend/ComfyUI-Manager ./ComfyUI/custom_nodes/ComfyUI-Manager
1213
COPY ./backend/SageAttention ./SageAttention
13-
COPY ./backend/filebrowser.json /etc/filebrowser/.filebrowser.json
1414
COPY ./backend/provision.sh ./provision.sh
15-
RUN conda create -n comfy python=3.12
16-
RUN conda install -n comfy anaconda::git conda-forge::libgl conda-forge::libglib conda-forge::jupyterlab conda-forge::sqlite
17-
RUN conda run -n comfy pip install -r ./ComfyUI/requirements.txt
15+
RUN conda create -n comfy python=3.12 && \
16+
conda install -n comfy anaconda::git conda-forge::libgl conda-forge::libglib conda-forge::jupyterlab conda-forge::sqlite && \
17+
conda run -n comfy pip install --no-cache-dir -r ./ComfyUI/requirements.txt && \
18+
conda clean --all -y
1819

1920
CMD [ "./provision.sh" ]

backend/ComfyUI-Manager

backend/SageAttention

backend/filebrowser.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)