Skip to content

Commit

Permalink
Merge pull request #5 from SWM-WeLike2Coding/feat/dockerfile
Browse files Browse the repository at this point in the history
feat: Create Dockerfile
  • Loading branch information
kjungw1025 authored Aug 30, 2024
2 parents 74d66f1 + eff3cd2 commit 6f91f1f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM openjdk:17-slim

WORKDIR /usr/app/

COPY build/libs/*.jar application.jar

ENTRYPOINT ["java", "-jar", "application.jar"]

0 comments on commit 6f91f1f

Please sign in to comment.