From 10a0dc4f841482eef5f75b45d18fb0423d101ca0 Mon Sep 17 00:00:00 2001 From: Steffen Neubauer Date: Thu, 9 Nov 2023 11:04:47 +0100 Subject: [PATCH] fix: alpine docker sha hash --- support/alpine.Dockerfile | 7 +++---- support/debian.Dockerfile | 5 +++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/support/alpine.Dockerfile b/support/alpine.Dockerfile index 98744f7317..7690baef3c 100644 --- a/support/alpine.Dockerfile +++ b/support/alpine.Dockerfile @@ -2,10 +2,9 @@ # Defaults to root. ARG VARIANT=root -# -# garden-base -# -FROM node:21.1.0-alpine@sha256:df76a9449df49785f89d517764012e3396b063ba3e746e8d88f36e9f332b1864 as garden-base-root +# NOTE: This is not the node version Garden itself will run in. Garden binaries have node "built in" and the version installed on the system does not matter. +# The main reason we base these images off of the Node image is for Azure DevOps Support. +FROM node:21.1.0-alpine@sha256:10e00fa540cafb2f1bd7592d042b3de22f92e447a7415b1841339afe940df8c4 as garden-base-root RUN apk add --no-cache \ bash \ diff --git a/support/debian.Dockerfile b/support/debian.Dockerfile index 80a9f32cd4..c790852252 100644 --- a/support/debian.Dockerfile +++ b/support/debian.Dockerfile @@ -2,8 +2,9 @@ # Defaults to root. ARG VARIANT=root -# Node base image -FROM node:18.15.0-buster-slim@sha256:8fc14971a14387a8b2cbeeddbd2298f73d8e2346dc24648096ca24e57e1d31f4 as garden-buster-base-root +# NOTE: This is not the node version Garden itself will run in. Garden binaries have node "built in" and the version installed on the system does not matter. +# The main reason we base these images off of the Node image is for Azure DevOps Support. +FROM node:20.9.0-buster-slim@sha256:0f459897dde81c0529e7489393774a7a6ddec7356be397522e2d2efcf7711843 as garden-buster-base-root FROM garden-buster-base-root as garden-base-root # system dependencies