From 369760c8413db438e56bfb78a577d4d9f66a077c Mon Sep 17 00:00:00 2001 From: codex Date: Tue, 21 Apr 2026 10:27:06 -0300 Subject: [PATCH] ci(ariadne): rebuild missing base image in pipeline --- Jenkinsfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 14dd2ac..2124633 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -298,6 +298,22 @@ printf '%s\n' "${gate_rc}" > build/quality-gate.rc } } + stage('Build & push base image') { + steps { + container('builder') { + sh ''' + set -euo pipefail + docker buildx build \ + --platform linux/arm64 \ + --file Dockerfile.base \ + --tag "${REGISTRY}/ariadne-base:py312" \ + --push \ + . + ''' + } + } + } + stage('Build & push image') { steps { container('builder') {