From 9d7cc625414c60adc9c6199cd65c7e475ecbf03e Mon Sep 17 00:00:00 2001 From: Gabri Botha Date: Fri, 4 Jun 2021 12:55:12 +0200 Subject: [PATCH] Fix CP commands --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 35d1832b0..4f0cb53a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,6 @@ ENV TZ Africa/Johannesburg ENV DEPLOY_STAGE staging WORKDIR /app -COPY target/* /app/ +ADD target/ target -ENTRYPOINT ["java","-jar","/app/*.jar"] \ No newline at end of file +ENTRYPOINT ["java","-jar","/app/target/*.jar"] \ No newline at end of file