Skip to content

Commit 8bc97d1

Browse files
committed
🐛 Docker build argument CLI argument name fix
1 parent d65b2d0 commit 8bc97d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ if [ "$BUILD" = true ]; then
298298

299299
# Perform multi-platform build with output as an image or optionally a direct push to the repository
300300
# Always echo this command to the command line
301-
(set -x; docker $BUILD_ACTION $LOG_ARGS -t "$IMAGE":"$IMAGE_TAG" $PLATFORM_ARGS --build-arg CONTAINER_VERSION="$CONTAINER_VERSION" --build_arg IMAGE_NAME="$IMAGE" -f "$VARIANT_DIR_PATH"/docker/Dockerfile .)
301+
(set -x; docker $BUILD_ACTION $LOG_ARGS -t "$IMAGE":"$IMAGE_TAG" $PLATFORM_ARGS --build-arg CONTAINER_VERSION="$CONTAINER_VERSION" --build-arg IMAGE_NAME="$IMAGE" -f "$VARIANT_DIR_PATH"/docker/Dockerfile .)
302302

303303
# Capture exit code from attempted Docker image build
304304
success=$?

0 commit comments

Comments
 (0)