From e09e7d3d92d9836b8228d5892ae927216a19e0b9 Mon Sep 17 00:00:00 2001 From: "Mahadik, Mukul Chandrakant" Date: Wed, 11 Sep 2024 15:41:19 -0700 Subject: [PATCH] Update Dockerfile Added the hardcoded build-kit alpine image with the EVEREST_VERSION = 2024.3.0 and matching SHA256 digest to the previous latest tag version which has now been moved to untagged (7494bd6624aee3f882b4f1edbc589879e1d6d0ccc2c58f3f5c87ac1838ccd1de) Found this image by going through the logs in the last successful run (in my forked repo) and looking at the FROM layer in the Docker build step. https://github.com/MukuFlash03/everest-demo/commit/fa60246ed145406c56e74f66ef481808ae22e60b Image link: https://github.com/everest/everest-ci/pkgs/container/build-kit-alpine/161694439 --- Expected: Should pass since it matches configurations of last successful run with matching EVEREST_VERSION and SHA256 digest for build-kit alpine base image. ---- Wil add more details in PR comments. ---- --- manager/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manager/Dockerfile b/manager/Dockerfile index b1605f25..36821a56 100644 --- a/manager/Dockerfile +++ b/manager/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=linux/x86_64 ghcr.io/everest/build-kit-alpine:latest +FROM --platform=linux/x86_64 ghcr.io/everest/build-kit-alpine@sha256:7494bd6624aee3f882b4f1edbc589879e1d6d0ccc2c58f3f5c87ac1838ccd1de ARG EVEREST_VERSION=2024.3.0 ENV EVEREST_VERSION=${EVEREST_VERSION}