From b7915a0633ce3f1189ad46a59cb136f255ebe757 Mon Sep 17 00:00:00 2001 From: Martin Bhuong Date: Sun, 8 Sep 2024 13:28:16 +0200 Subject: [PATCH] Upgrade to version 3.10.0 --- build-images.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-images.sh b/build-images.sh index d116b85..2bd97de 100644 --- a/build-images.sh +++ b/build-images.sh @@ -14,6 +14,7 @@ images=() repobase="${REPOBASE:-ghcr.io/geniusdynamics}" # Configure the image name reponame="rally" +APP_VERSION="v3.10.0" # Create a new empty container image container=$(buildah from scratch) @@ -45,7 +46,7 @@ buildah config --entrypoint=/ \ --label="org.nethserver.authorizations=traefik@node:routeadm" \ --label="org.nethserver.tcp-ports-demand=1" \ --label="org.nethserver.rootfull=0" \ - --label="org.nethserver.images=docker.io/postgres:15.5-alpine3.19 docker.io/lukevella/rallly:3.9.0" \ + --label="org.nethserver.images=docker.io/postgres:15.5-alpine3.19 docker.io/lukevella/rallly:${APP_VERSION}" \ "${container}" # Commit the image buildah commit "${container}" "${repobase}/${reponame}"