We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08e19c4 commit 5b3b048Copy full SHA for 5b3b048
1 file changed
Dockerfile
@@ -0,0 +1,11 @@
1
+# Runtime image (JRE만)
2
+FROM eclipse-temurin:21-jre
3
+
4
+# 애플리케이션 실행 디렉토리
5
+WORKDIR /app
6
7
+# CI에서 만든 JAR 복사
8
+COPY build/libs/*.jar /app/app.jar
9
10
+# 실행
11
+ENTRYPOINT ["java","-jar","/app/app.jar"]
0 commit comments