Skip to content

Commit

Permalink
[DEPLOY]: Dockerfile 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sejineer committed Aug 13, 2024
1 parent caba718 commit f19dffb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM openjdk:21

ARG JAR_FILE=build/libs/*.jar
COPY ${JAR_FILE} app.jar

EXPOSE 8080

ENTRYPOINT ["java", "-jar", "/app.jar"]

0 comments on commit f19dffb

Please sign in to comment.