-
Notifications
You must be signed in to change notification settings - Fork 3
[Merge/#458] dev -> main 병합 #464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: STACKPOT/STACKPOT-BE
Length of output: 150
🌐 Web query:
eclipse-temurin:17 jdk focal slim image size comparison security 2025💡 Result:
Summary (as of Dec 29, 2025)
Size (examples for amd64):
Security / CVEs:
Recommendations
Sources
If you want, I can fetch exact current sizes for specific tags/digests for your platform (linux/amd64, arm64) and list known CVEs for the latest 17-focal tags.
Citations:
🌐 Web query:
eclipse-temurin docker latest recommendations 2025 openjdk alternative💡 Result:
Short answer — yes: continue using the official eclipse-temurin Docker images, but don’t rely on an unqualified "latest" tag in production. Pin to a specific major.minor (or better: the exact tag + digest), choose the OS variant you need (alpine/ubi/debian/slim/nanoserver), and prefer a minimized runtime (jlink/custom JRE or slim/jre images) when size/attack-surface matters. Good alternatives if you want a different OpenJDK build are Amazon Corretto, Azul Zulu (or Zulu Prime), BellSoft Liberica, Microsoft Build of OpenJDK and Red Hat/SAP builds — pick one with the support and platform variants you require. [1][2][3][4]
Practical recommendations
Sources
If you want, I can:
🏁 Script executed:
Repository: STACKPOT/STACKPOT-BE
Length of output: 150
베이스 이미지 최적화 검토 필요
Eclipse Temurin은 Eclipse Foundation의 공식 OpenJDK 배포판으로 좋은 선택입니다. 다만
focal베리언트는 다음 사항을 개선할 수 있습니다:이미지 크기:
17-jdk-focal은 약 417MB이지만,17-jre-focal을 사용하면 약 266MB로 약 150MB를 절감할 수 있습니다 (애플리케이션에서 JDK가 필요하지 않다면).보안 고려사항: focal 베리언트는 Ubuntu 20.04 기반이며, CVE-2025-6965 등 OS 패키지 취약점의 영향을 받을 수 있습니다. 프로덕션 환경에서는:
FROM eclipse-temurin:17-jdk-focal@sha256:<digest>추가 최적화 옵션: 애플리케이션과 네이티브 의존성이 호환된다면, Alpine 베리언트(
17-jre-alpine)로 훨씬 더 작은 이미지를 만들 수 있습니다.JDK 대신 JRE 사용이 필요한지, 또는 Alpine 호환성 여부를 검토해주세요.
🤖 Prompt for AI Agents