```
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.....
This commit is contained in:
PikuZheng 2023-06-26 18:36:17 +08:00 committed by GitHub
parent f4a7b7a5ea
commit feb07e4123
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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