빌드팩 캐시 이미지를 활용해서 이전 빌드의 결과를 재사용할 수 있습니다. 이렇게 하면 Cloud Build와 같은 임시 환경에서 이미지를 빌드할 때를 포함하여 Google Cloud의 빌드팩을 사용해서 이미지를 빌드할 때 전체 기간을 줄일 수 있습니다.
이 가이드의 다음 단계에서는 Cloud Build를 사용한 원격 빌드에 중점을 둡니다.
로컬 빌드의 경우 캐시 이미지 안내와 pack 명령어 참조 페이지를 모두 확인하세요.
Cloud Build에 캐시 이미지 사용
Cloud Build에서 빌드팩 캐시 이미지를 사용 설정하려면 cloudbuild.yaml과 같은 빌드 구성 파일을 만들어야 합니다. 빌드 구성 파일은 pack CLI가 빌드 이미지를 지정된 원격 저장소에 게시하도록 지시합니다. 그런 후 이 빌드 이미지는 후속 빌드를 위한 '캐시 이미지'로 사용됩니다.
새 빌드 구성 파일에 실행하는 첫 번째 빌드는 pack 명령어를 사용해서 초기 빌드 이미지 캐시를 만들고 이를 저장소에 푸시합니다. 빌드 성능 개선은 초기 캐시 이미지가 빌드에 제공된 이후에만 확인됩니다.
빌드 구성 파일 만들기
Cloud Build 구성 파일을 정의하려면 pack CLI를 사용하여 이미지를 만드는 빌드 단계를 사용해서 YAML 파일을 작성해야 합니다.
다음 예시 cloudbuild.yaml에서 빌드는 빌드팩을 사용해서 애플리케이션 또는 함수에 대해 이미지를 만들고, 초기 빌드 캐시 이미지를 만들고, 이를 저장소에 푸시합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-04-02(UTC)"],[[["Buildpacks cache images can be used to reuse results from previous builds, reducing the overall build time when using Google Cloud's buildpacks, including in ephemeral environments like Cloud Build."],["To use cache images with Cloud Build, a build configuration file (e.g., `cloudbuild.yaml`) must be created to instruct the `pack` CLI to publish a build image to a remote repository."],["The initial build with the new configuration file creates and pushes the build image cache, and subsequent builds will benefit from the performance improvements provided by the cache."],["A build configuration file is a YAML file that defines a build step using the `pack` CLI, and the provided example shows how to create a cache image and push it to a repository."],["To run a build remotely, you must include the `--config` command flag and specify your build configuration file."]]],[]]