Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Fintory CI/CD

on:
push:
branches: [ "dev" ]
branches: [ "*" ]
pull_request:
branches: [ "dev" ]
branches: [ "*" ]

env:
AWS_REGION: ap-northeast-2
Expand Down
2 changes: 1 addition & 1 deletion app-child/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ WORKDIR /app
COPY build/libs/*.jar app.jar
COPY src/main/resources/application-deploy.yml /app/application-deploy.yml

ENTRYPOINT ["java", "-jar", "app.jar", "--spring.profiles.active=deploy"]
ENTRYPOINT ["java", "-Xms500m", "-Xmx500m", "-XX:NewRatio=3", "-jar", "app.jar", "--spring.profiles.active=deploy"]
Loading