fix image not updating

This commit is contained in:
Torben Haack 2024-10-11 13:20:43 +02:00
parent 5cdd826b5d
commit b795389dd1

View File

@ -11,7 +11,7 @@ build_image() {
echo "Building $image_name Docker image for $platform..."
docker buildx build --platform $platform -t ${image_name}:latest -f $dockerfile .
docker buildx build --platform $platform -t ${image_name}:latest -f $dockerfile --load .
if [ $? -eq 0 ]; then
echo "$image_name Docker image built successfully"
else