Skip to content

Commit

Permalink
Merge pull request #42 from BaeJunH0/feat/#37-cicd
Browse files Browse the repository at this point in the history
fix : 내부 디렉토리 인식을 못하는 문제 해결
  • Loading branch information
BaeJunH0 authored Nov 29, 2024
2 parents 6e11d69 + 30bb3ac commit 32908eb
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# 베이스 이미지
FROM amazoncorretto:17

# 작업 디렉토리 설정
WORKDIR /AlumniLink_BE
# 인자 설정 - Jar_File
ARG JAR_FILE=build/libs/*.jar

# 애플리케이션 Jar 파일 복사
COPY build/libs/webBoard-0.0.1-SNAPSHOT.jar app.jar
# jar 파일 복제
COPY ${JAR_FILE} app.jar

# 컨테이너 실행 시 실행될 명령어
CMD ["java", "-jar", "app.jar"]
# 인자 설정 부분과 jar 파일 복제 부분 합쳐서 진행해도 무방
#COPY build/libs/*.jar app.jar

# 실행 명령어
ENTRYPOINT ["java", "-jar", "app.jar"]

0 comments on commit 32908eb

Please sign in to comment.