From 0018c8d7bd04c4eee89f0e07f426acf9064483ba Mon Sep 17 00:00:00 2001 From: hassan00dev Date: Sat, 28 Dec 2024 18:33:35 +0500 Subject: [PATCH] copy current context instead of clone repo --- dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dockerfile b/dockerfile index 4827b7b3..787cad00 100644 --- a/dockerfile +++ b/dockerfile @@ -14,9 +14,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libgl1 \ && rm -rf /var/lib/apt/lists/* -WORKDIR /workspace -RUN git clone https://github.com/comfyanonymous/ComfyUI.git WORKDIR /workspace/ComfyUI +COPY . . RUN pip3 install --upgrade pip RUN pip3 install --no-cache-dir -r requirements.txt