From e77b4383a23f6120d53f4a1a4a8f3dd7be3b5f5a Mon Sep 17 00:00:00 2001 From: zstadler Date: Thu, 1 Dec 2022 15:52:55 +0200 Subject: [PATCH] Dockerfile fix > When using COPY with more than one source file, the destination must be a directory and end with a / --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f1da1ac..c7ee8d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,9 @@ RUN mkdir -p /data WORKDIR /graphhopper -COPY --from=build /graphhopper/web/target/graphhopper*.jar . +COPY --from=build /graphhopper/web/target/graphhopper*.jar ./ -COPY graphhopper.sh graphhopper/config-example.yml . +COPY graphhopper.sh graphhopper/config-example.yml ./ # Enable connections from outside of the container RUN sed -i '/^ *bind_host/s/^ */&# /p' config-example.yml