From cc9f08d4d58356303a487bbd7bd90e27bfe3c1d3 Mon Sep 17 00:00:00 2001 From: drewstone Date: Mon, 30 May 2022 15:21:28 -0400 Subject: [PATCH] Fix build/publish script (#218) --- scripts/build-standalone-docker.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build-standalone-docker.sh b/scripts/build-standalone-docker.sh index 0e75c1e09..6eabb96c3 100755 --- a/scripts/build-standalone-docker.sh +++ b/scripts/build-standalone-docker.sh @@ -13,9 +13,9 @@ GITUSER=webb-tools IMAGE_NAME=protocol-substrate-standalone-node # Build the image -echo "Building ${ gitUSER}/${IMAGE_NAME}:latest docker image, hang on!" -time docker build -f ./docker/Standalone.Dockerfile -t ${ gitUSER}/${IMAGE_NAME}:latest . -docker tag ${ gitUSER}/${IMAGE_NAME}:latest ${ gitUSER}/${IMAGE_NAME}:v${ version} +echo "Building ${GITUSER}/${IMAGE_NAME}:latest docker image, hang on!" +time docker build -f ./docker/Standalone.Dockerfile -t ${GITUSER}/${IMAGE_NAME}:latest . +docker tag ${GITUSER}/${IMAGE_NAME}:latest ${GITUSER}/${IMAGE_NAME}:v${VERSION} # Show the list of available images for this repo echo "Image is ready"