From 20c33b223b882a3f622248e5557c65d48817e797 Mon Sep 17 00:00:00 2001 From: Gabri Botha Date: Fri, 4 Jun 2021 13:22:50 +0200 Subject: [PATCH] Change ADD to COPY --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4f0cb53a1..a4caaf732 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL Gabri Botha ENV TZ Africa/Johannesburg ENV DEPLOY_STAGE staging +COPY . /app WORKDIR /app -ADD target/ target -ENTRYPOINT ["java","-jar","/app/target/*.jar"] \ No newline at end of file +ENTRYPOINT ["java","-jar","./target/*.jar"]