From b5206af9202f3da6c41b79d171d954608cb2e0ac Mon Sep 17 00:00:00 2001 From: aarbit Date: Mon, 1 Jul 2024 16:25:33 -0500 Subject: [PATCH] Fixes Dockerfile copy line --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index f89403d..aa661bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,10 +15,7 @@ RUN apk --no-cache add gradle RUN gradle bootJar -RUN ls -l /app/build -RUN ls -l /app/build/libs - -COPY build/libs/*.jar app.jar +COPY /app/build/libs/*.jar app.jar RUN ls -al EXPOSE 8080