1
0
mirror of https://github.com/containers/bootc.git synced 2026-02-05 06:45:13 +01:00

Justfile: Stop using --label flag to fix layer caching

This broke caching with podman 5.6; it's fixed as of https://github.com/containers/buildah/commit/fb6ce9d
but it's easy enough for us to just use the `LABEL` instruction anyways.

Assisted-by: Claude Code (Sonnet 4.5)
Signed-off-by: Colin Walters <walters@verbum.org>
This commit is contained in:
Colin Walters
2025-11-16 11:49:44 -05:00
parent e0475cd60e
commit ddb2ed3b83

View File

@@ -17,7 +17,7 @@ variant := env("BOOTC_variant", "ostree")
base := env("BOOTC_base", "quay.io/centos-bootc/centos-bootc:stream10")
testimage_label := "bootc.testimage=1"
base_buildargs := "--jobs 4 --label=" + testimage_label
base_buildargs := "--jobs 4"
buildargs := "--build-arg=base=" + base + " --build-arg=variant=" + variant
# Build the container image from current sources.