feat(docker): 이미지 빌드 메타데이터 기록 및 status 명령 추가#716
Merged
Conversation
- Dockerfile: BUILD_DATE ARG로 빌드 시점을 .build-date 파일에 기록 - entrypoint.sh: full/help/fetch 실행 시 Image Metadata 요약 출력 - entrypoint.sh: `status` 명령 추가 (상세 var/ 데이터 보고서) - bin/image_status.py: var/ 스캔하여 페이지 버전 통계, Age 분포, stale 페이지 후보 목록을 출력하는 진단 스크립트 - workflow: Docker image pull 후 메타데이터 로깅 스텝 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Background
Workflow run #21991197001에서 Docker Hub의
confluence-mdx:latest이미지 내 var/ 데이터가 outdated 상태임을 확인:이미지의 stale 데이터를 사전에 식별하기 위한 진단 도구가 필요했습니다.
Changes
confluence-mdx/DockerfileARG BUILD_DATE+.build-date파일로 빌드 시점 기록confluence-mdx/scripts/entrypoint.shfull,help,fetch_cli.py등 실행 시 Image Metadata 요약 자동 출력status명령 추가 →bin/image_status.py실행confluence-mdx/bin/image_status.py(신규).github/workflows/generate-mdx-from-confluence.ymlDocker image metadata스텝 추가 (Image Created, ID, Size 로깅)Test plan
docker run confluence-mdx:test help→ Image Metadata 출력 확인docker run confluence-mdx:test status→ 상세 리포트 출력 확인기록하고 기능입니다) 해소 확인🤖 Generated with Claude Code