Skip to content

Commit

Permalink
feat: add DockerFile
Browse files Browse the repository at this point in the history
  • Loading branch information
sejineer committed May 27, 2024
1 parent 2bf4927 commit 363f78b
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:17

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

EXPOSE 8080

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

0 comments on commit 363f78b

Please sign in to comment.