Skip to content

Commit 2a8f91c

Browse files
committed
feat: DockerFile 추가
- DockerFile 추가와 초기 실행값 설정
1 parent 3670576 commit 2a8f91c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

DockerFIle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM openjdk:21-jdk
2+
3+
MAINTAINER seojin Yoon <[email protected]>
4+
5+
LABEL maintainer="Seojin Yoon <[email protected]>" \
6+
description="somemore API server Docker Image" \
7+
version="1.0"
8+
9+
COPY build/libs/*SNAPSHOT.jar app.jar
10+
11+
ENTRYPOINT ["java", "-jar", "/app.jar"]

0 commit comments

Comments
 (0)