Skip to content

Commit

Permalink
SB-292 (Feat) : 결함 모듈 배포
Browse files Browse the repository at this point in the history
  • Loading branch information
Jyuung committed Sep 2, 2024
1 parent b47916f commit 347a03a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 25 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
cd ./image/src/main/resources
echo "${{ secrets.IMAGE_APPLICATION }}" > application.yml
- name: Make Fault application.yml
run: |
cd ./fault/src/main/resources
echo "${{ secrets.FAULT_APPLICATION }}" > application.yml
- name: Make Warehouse application.yml
run: |
cd ./warehouse/src/main/resources
Expand Down
3 changes: 3 additions & 0 deletions fault/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM openjdk:17-jdk-slim
ADD /fault/build/libs/*.jar fault.jar
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/fault.jar"]
25 changes: 0 additions & 25 deletions fault/src/main/resources/application.yaml

This file was deleted.

1 change: 1 addition & 0 deletions fault/src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
temp

0 comments on commit 347a03a

Please sign in to comment.