From c54b5ae24b0b5f65cd1c291e82972be1512705ce Mon Sep 17 00:00:00 2001 From: Hyun <82355395+donghyuun@users.noreply.github.com> Date: Sat, 21 Sep 2024 15:32:56 +0900 Subject: [PATCH] =?UTF-8?q?Revert=20"Dockerfile=20=EC=9E=91=EC=84=B1"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 0abad9d..0000000 --- a/Dockerfile +++ /dev/null @@ -1,13 +0,0 @@ -# 도커 이미지를 빌드할 때 필요한 커맨드를 가짐 - -# jdk21 image start -FROM openjdk:21 - -# 인자 설정 - JAR_File -ARG JAR_FILE=build/libs/*.jar - -# jar 파일 복제 -COPY ${JAR_FILE} app.jar - -# 실행 명령어 -ENTRYPOINT ["java", "-jar", "app.jar"] \ No newline at end of file