From 44c26c419ea45e3ce7f56fdd62790f5638305e70 Mon Sep 17 00:00:00 2001 From: Jason DeTiberus <915544+detiber@users.noreply.github.com> Date: Fri, 20 Dec 2024 10:08:56 -0500 Subject: [PATCH] [chore] add "--pull newer" to build recipe --- .gitignore | 1 - Justfile | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 204d6e8..b35fc65 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,3 @@ cosign.key output/ *.raw *.qcow2 - diff --git a/Justfile b/Justfile index a17dac7..378c086 100644 --- a/Justfile +++ b/Justfile @@ -99,6 +99,7 @@ build $target_image=image_name $tag=default_tag: podman build \ "${BUILD_ARGS[@]}" \ "${LABELS[@]}" \ + --pull=newer \ --tag "${target_image}:${tag}" \ .