Skip to content
This repository has been archived by the owner on Oct 20, 2024. It is now read-only.

Commit

Permalink
feat: Dockerfile 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sejineer committed Jan 1, 2024
1 parent c5ecbf9 commit 92b37b1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
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 92b37b1

Please sign in to comment.