From 00edd49e711a012f2b5965a744f1ac3f3d531352 Mon Sep 17 00:00:00 2001 From: Enrico Regge Date: Mon, 4 Aug 2025 16:53:04 +0200 Subject: [PATCH] fixed broken build script --- auth-oidc-proxy/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth-oidc-proxy/build b/auth-oidc-proxy/build index e05b15d42..79bd7cd5a 100755 --- a/auth-oidc-proxy/build +++ b/auth-oidc-proxy/build @@ -13,7 +13,7 @@ set -ex export REGISTRY=${REGISTRY:-icr.io/codeengine} # Build and push the oidc-auth image -cd oidc-auth +cd auth docker build ${NOCACHE} -t ${REGISTRY}/auth-oidc-proxy/auth . --platform linux/amd64 docker push ${REGISTRY}/auth-oidc-proxy/auth cd ..