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:
2
Justfile
2
Justfile
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user