Skip to content

Commit

Permalink
chore: 개발 서버 CD 스크립트 - dockerfile 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
devmizz committed Jan 21, 2025
1 parent 143632c commit 5b6674f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docker/dockerfile-dev
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
FROM bellsoft/liberica-openjdk-alpine:21

# JAR 파일 복사
# 애플리케이션 디렉토리 설정
WORKDIR /app

# 빌드된 JAR 파일 복사
COPY deployment/build/libs/yappu-world.jar app.jar

# dev 프로파일로 JAR 실행
# dev 프로파일로 애플리케이션 실행
ENTRYPOINT ["java", "-Dspring.profiles.active=dev", "-jar", "app.jar"]

0 comments on commit 5b6674f

Please sign in to comment.