Skip to content

Commit

Permalink
[BE] refactor: config jvm 메모리 제한 추가 (#24)
Browse files Browse the repository at this point in the history
Signed-off-by: EunJiJung <[email protected]>
  • Loading branch information
bianbbc87 committed Feb 10, 2025
1 parent aae5d27 commit be95f31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/be-main.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: ECR actions for multiple folders

on:
pull_request:
push:
# 임시 테스트 브랜치
branches:
- main
- be/setting/24-ecr

env:
NAMESPACE_MSA: "msa"
Expand Down
2 changes: 1 addition & 1 deletion src/backend/config-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ WORKDIR /app

COPY --from=builder /app/build/libs/*.jar app.jar

CMD ["java", "-jar", "app.jar"]
CMD ["java", "-Xms128m", "-Xmx256m", "-jar", "app.jar"]

0 comments on commit be95f31

Please sign in to comment.