From 039d898ca7bdd229ffdb7c95417999d81b5c8c96 Mon Sep 17 00:00:00 2001 From: Brian Goff Date: Tue, 3 Oct 2023 00:46:05 +0000 Subject: [PATCH] Fix toolchain image ref Signed-off-by: Brian Goff --- docker-bake.hcl | 2 +- frontend/mariner2/target_rpm.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index b0fe09456..060dfafc0 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -11,7 +11,7 @@ target "frontend" { target "mariner2-toolchain" { dockerfile = "./frontend/mariner2/Dockerfile" target = "toolchain" - tags = ["ghcr.io/azure/dalec/mariner/toolchain:latest", "local/dalec/mariner/toolchain"] + tags = ["ghcr.io/azure/dalec/mariner2/toolchain:latest", "local/dalec/mariner2/toolchain"] } # Run linters diff --git a/frontend/mariner2/target_rpm.go b/frontend/mariner2/target_rpm.go index ceaa651c9..afde026d7 100644 --- a/frontend/mariner2/target_rpm.go +++ b/frontend/mariner2/target_rpm.go @@ -17,7 +17,7 @@ import ( const ( marinerRef = "mcr.microsoft.com/cbl-mariner/base/core:2.0" - toolchainImgRef = "ghcr.io/azure/dalec/mariner/toolchain:latest" + toolchainImgRef = "ghcr.io/azure/dalec/mariner2/toolchain:latest" cachedToolkitRPMDir = "/root/.cache/mariner2-toolkit-rpm-cache" marinerToolkitPath = "/usr/local/toolkit"