Ensure imagebuild actually creates an updated image

This commit is contained in:
Martchus 2023-02-24 22:46:14 +01:00
parent 01b3ceea72
commit 2b217f7607
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
#!/bin/bash
set -e
bindir=$(dirname "$0")
${CRE:-docker} image build --tag "${CRE_IMAGE:-archlinux-base-devel}" "$bindir/base-devel"
${CRE:-docker} image pull "${CRE_IMAGE:-archlinux-base-devel}"
${CRE:-docker} image build --no-cache --tag "${CRE_IMAGE:-archlinux-base-devel}" "$bindir/base-devel"