Skip to content

Commit

Permalink
Merge pull request #88 from seniors-project/Feature/#86
Browse files Browse the repository at this point in the history
Setting : Dockerfile 수정 #86
  • Loading branch information
strangehoon authored Oct 1, 2023
2 parents 2f75df2 + 3057f42 commit e9d7fc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:17
ARG JAR_FILE=seniors-0.0.1-SNAPSHOT.jar
COPY $JAR_FILE app.jar
ENTRYPOINT ["java","-jar","/app.jar"]
ARG JAR_FILE=build/libs/*.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","/app.jar"]

0 comments on commit e9d7fc8

Please sign in to comment.