Skip to content

Commit

Permalink
Merge pull request #34 from Sopo2023/feat/#1
Browse files Browse the repository at this point in the history
chore: modify Dockerfile
  • Loading branch information
GayeongKimm authored Jul 28, 2024
2 parents 9c3fb77 + 076a780 commit 1c1d26a
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,5 +1,5 @@
FROM openjdk:17
ARG JAR_FILE=/build/libs/sopo-2.0.0.jar
COPY ${JAR_FILE} /sopo.jar
ARG JAR_FILE=build/libs/*.jar
COPY ${JAR_FILE} sopo.jar
ENV TZ=Asia/Seoul
ENTRYPOINT ["java","-jar","/sopo.jar","-Duser.timezone=Asia/Seoul"]
ENTRYPOINT ["java", "-jar", "/sopo.jar", "-Duser.timezone=Asia/Seoul"]

0 comments on commit 1c1d26a

Please sign in to comment.