From feb07e41233820779e5fdf3f33997efa5cb451d5 Mon Sep 17 00:00:00 2001 From: PikuZheng Date: Mon, 26 Jun 2023 18:36:17 +0800 Subject: [PATCH] undo #265 ``` Step 7/21 : COPY Pipfile* docker-entrypoint.sh . When using COPY with more than one source file, the destination must be a directory and end with a / ``` why..... --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9e15069..b8e001f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ FROM python:3.8-alpine WORKDIR /app -COPY Pipfile* docker-entrypoint.sh . +COPY Pipfile* docker-entrypoint.sh ./ # Use sed to strip carriage-return characters from the entrypoint script (in case building on Windows) # Install dependencies