Added Custom Nodes

This commit is contained in:
root 2023-08-23 13:26:38 +00:00
parent 3849a6bf10
commit b01262e010
5 changed files with 21 additions and 20 deletions

View File

@ -12,7 +12,7 @@ RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
RUN apt-get install -y python3.9
RUN apt-get install -y python3-pip
RUN apt-get install -y git
# Set the working directory inside the container
WORKDIR /app
@ -27,7 +27,11 @@ RUN python3.9 -m pip install -r requirements.txt
RUN python3.9 -m pip install scikit-learn==0.24.2
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y build-essential && rm -rf /var/lib/apt/lists/*
RUN python3.9 -m pip install scikit-image
#RUN cd ./custom_nodes/comfy_controlnet_preprocessors && python3.9 install.py && cd ../
RUN cd ./custom_nodes/was-node-suite-comfyui/ && python3.9 -m pip install -r requirements.txt && cd ../
RUN cd ./custom_nodes/ComfyUI-Impact-Pack/ && python3.9 install.py && cd ../
#Give permission to script
RUN chmod +x ./entrypoint.sh

View File

@ -1,5 +1,5 @@
MC1: #323416 - darkslategray, MC2: #bfb1ab - darkgray, MC3: #73299d - darkslateblue, MC4: #5d6c2c - darkolivegreen
AN1: #233416 - darkgreen, AN2: #342716 - black
T1: #163234 - darkslategray, T2: #341632 - darkslategray
C1: #181634 - midnightblue, C2: #abb9bf - silver
MO1: #33342b - darkslategray, MO2: #bfbbb9 - silver, MO3: #907a9d - lightslategray, MO4: #686c59 - dimgray
MC1: #5d6c2c - darkolivegreen, MC2: #c0b1ab - darkgray, MC3: #323416 - darkslategray, MC4: #73299d - darkslateblue
AN1: #3d6c2c - darkolivegreen, AN2: #6c5b2c - darkolivegreen
T1: #2c5d6c - darkslategray, T2: #6c2c5d - purple
C1: #3b2c6c - darkslateblue, C2: #abbac0 - silver
MO1: #686c59 - dimgray, MO2: #c0bbba - silver, MO3: #33342b - darkslategray, MO4: #907a9d - lightslategray

View File

@ -1,4 +1,6 @@
#!/bin/bash
cd ./custom_nodes/comfy_controlnet_preprocessors && python3.9 install.py && cd ../ &
# Run the first Python script
python3.9 main.py &

View File

@ -154,9 +154,3 @@ wldhx.yadisk-direct==0.0.6
wrapt==1.15.0
yarl==1.9.2
zipp==3.16.2
pyyaml
Pillow
scipy
tqdm
psutil

File diff suppressed because one or more lines are too long