ops/devops: fix console runner build paths and log built image

This commit is contained in:
StellaOps Bot
2025-12-07 15:23:08 +02:00
parent a403979177
commit e3f28a21ab
4 changed files with 10 additions and 11 deletions

View File

@@ -5,7 +5,7 @@ set -euo pipefail
# IMAGE_TAG: docker tag to produce (default: stellaops/console-runner:offline)
# OUTPUT_TAR: optional path to save the image tarball for airgap use.
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../../.." && pwd)"
IMAGE_TAG=${IMAGE_TAG:-stellaops/console-runner:offline}
DOCKERFILE=${DOCKERFILE:-ops/devops/console/Dockerfile.runner}
APP_DIR=${APP_DIR:-src/Web/StellaOps.Web}