From bd5520b4ba7cd55a674f4451e7a81896ccfdeacd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=82=98=EA=B2=BD=ED=98=B8?= Date: Wed, 19 Jun 2024 00:55:50 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20CI-CD=20=ED=8C=8C=EC=9D=BC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9dc8197..4d42df8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,8 @@ EXPOSE 8080 # The application's jar file ARG JAR_FILE=build/libs/MARU_EGG-0.0.1-SNAPSHOT.jar -# Copy the application's jar to the container -COPY ${JAR_FILE} MARU_EGG.jar +# Add the application's jar to the container +ADD ${JAR_FILE} MARU_EGG.jar # Run the jar file ENTRYPOINT ["java", "-jar", "MARU_EGG.jar"] \ No newline at end of file