Skip to content

Commit

Permalink
#1 [feat] docker file 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
SeorinY committed Sep 21, 2023
1 parent 1233826 commit f9757ac
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM openjdk:11
ARG TZ=Asia/Seoul
EXPOSE 8080
ARG JAR_FILE=./adapter-web/build/libs/app.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","-Duser.timezone=${TZ}","-Dspring.profiles.active=${PROFILE}","app.jar"]

0 comments on commit f9757ac

Please sign in to comment.