Skip to content

Commit

Permalink
Merge pull request #39 from BokDoong/feat/CICD
Browse files Browse the repository at this point in the history
Feat: 개발용 도커파일 추가
  • Loading branch information
yuntasha authored Oct 6, 2023
2 parents 9da728d + ea12598 commit c5c7200
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile-dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM openjdk:11-jdk-slim
EXPOSE 8080
ARG JAR_FILE=/build/libs/english-fairytale-0.0.1-SNAPSHOT.jar
VOLUME ["/var/log"]
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","-Dspring.profiles.active=dev","/app.jar"]

0 comments on commit c5c7200

Please sign in to comment.