Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
oo-ni authored Jan 27, 2024
1 parent 8c7b8bb commit e1926c2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM openjdk:17-jdk-alpine

# 인자 설정 - Jar_File
ARG JAR_FILE=build/libs/*.jar

# jar 파일 복제
COPY ${JAR_FILE} config.jar

# 실행 명령어
ENTRYPOINT ["java","-jar","config.jar"]

0 comments on commit e1926c2

Please sign in to comment.