Skip to content

Commit

Permalink
fix: alpine docker sha hash
Browse files Browse the repository at this point in the history
  • Loading branch information
stefreak committed Nov 9, 2023
1 parent 68e3f2d commit 10a0dc4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
7 changes: 3 additions & 4 deletions support/alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
5 changes: 3 additions & 2 deletions support/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 10a0dc4

Please sign in to comment.