aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-07-22 22:20:40 +0100
committerdiogo464 <[email protected]>2025-07-22 22:20:40 +0100
commit71930f5193c5a778e0ee5650b26f648f308ea319 (patch)
treef0954a8e394babd33f94f7879cb00dafa8fd8f5f
parenteabeca13fc9c57833c9d729ba8d0950da2f07806 (diff)
updated container image nameHEADmain
-rwxr-xr-xbuild.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 4ade9b4..4f75a5f 100755
--- a/build.sh
+++ b/build.sh
@@ -1,9 +1,11 @@
1#!/usr/bin/env sh 1#!/usr/bin/env sh
2 2
3IMAGE_NAME=cr.d464.sh/belverde-fire:latest
4
3go build . || exit 1 5go build . || exit 1
4docker build -t git.d464.sh/diogo464/belverde-fire -f Containerfile . || exit 1 6docker build -t $IMAGE_NAME -f Containerfile . || exit 1
5 7
6if [ "$PUSH" = "1" ]; then 8if [ "$PUSH" = "1" ]; then
7 docker push git.d464.sh/diogo464/belverde-fire 9 docker push $IMAGE_NAME
8fi 10fi
9 11