Skip to content

Commit

Permalink
chore: ssl 인증서 경로 수정(#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
whereami2048 committed Jun 9, 2024
1 parent 2e77150 commit 110d744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ ARG KEY_STORE=/Api-Module/src/main/resources/ssl/keystore.p12

# 변수에 저장된 것을 컨테이너 실행시 이름을 app.jar파일로 변경하여 컨테이너에 저장
COPY ${JAR_FILE} app.jar
COPY ${KEY_STORE} /ssl/keystore.p12
COPY ${KEY_STORE} keystore.p12
# 빌드된 이미지가 run될 때 실행할 명령어
ENTRYPOINT ["java","-jar","app.jar"]
2 changes: 1 addition & 1 deletion Api-Module/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ server:
shutdown: graceful
port: 8080
ssl:
key-store: file:/home/ubuntu/keystore.p12
key-store: /keystore.p12
key-store-type: PKCS12
key-store-password: ${KEY_STORE_PASSWORD}

Expand Down

0 comments on commit 110d744

Please sign in to comment.