From 3b4152f89f5b98e8f7e2419a798ae94a5606eabb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phillip=20K=C3=BChne?= Date: Wed, 4 Oct 2023 00:19:14 +0000 Subject: [PATCH] Fix build script --- build_container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_container.sh b/build_container.sh index 0706947..876aced 100755 --- a/build_container.sh +++ b/build_container.sh @@ -19,7 +19,7 @@ fi VERSION=$(git rev-parse --abbrev-ref HEAD)-$(git describe) # Build the container. Add the version as a tag and as ENV variable SOURCE_VERSION -docker build -t ghcr.io/$USERNAME/:$VERSION --build-arg SOURCE_VERSION=$VERSION . +docker build -t ghcr.io/$USERNAME/karaoqueue:$VERSION --build-arg SOURCE_VERSION=$VERSION . # Ask the user if they want to push the container. Confirm Version. read -p "Push container to ghcr.io/$USERNAME/karaoqueue:$VERSION? [y/n] " -n 1 -r