From afe1d2a67f6b25510abf558eee419c1126b353cb Mon Sep 17 00:00:00 2001 From: LordHansolo Date: Fri, 22 Mar 2024 17:43:28 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 74e282c4..07c22edd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ ARG IMAGE_TYPE=full # Conditional logic based on the IMAGE_TYPE argument # Always copy the Docker directory, but only use it if IMAGE_TYPE is not "elite" -COPY ./Docker /workspace/Docker +COPY ./Docker /workspace/Docker # elite 类型的镜像里面不包含额外的模型 RUN if [ "$IMAGE_TYPE" != "elite" ]; then \ chmod +x /workspace/Docker/download.sh && \ @@ -34,9 +34,6 @@ RUN if [ "$IMAGE_TYPE" != "elite" ]; then \ fi -# Copy the rest of the application -COPY . /workspace - # Copy the rest of the application COPY . /workspace