We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f576d3 commit e68fb02Copy full SHA for e68fb02
Makefile
@@ -96,7 +96,7 @@ buildah-build: check-builder load-version-json ## Build and push image (multi-ar
96
for arch in amd64; do \
97
ARCH_TAG=$$FINAL_TAG-$$arch; \
98
echo "📦 Building for architecture: $$arch"; \
99
- buildah build --arch=$$arch --os=linux --layers -t $$ARCH_TAG . || exit 1; \
+ buildah build --arch=$$arch --os=linux --layers --cache-from=$(IMAGE_TAG_BASE) --cache-to=$(IMAGE_TAG_BASE) -t $(IMG)-$$arch . || exit 1; \
100
echo "🚀 Pushing image: $$ARCH_TAG"; \
101
buildah push $$ARCH_TAG docker://$$ARCH_TAG || exit 1; \
102
done; \
0 commit comments