Skip to content

Commit

Permalink
fix: alpine 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 c8ad866
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"moment": "^2.29.4",
"node-fetch": "^3.3.2",
"node-forge": "^1.3.1",
"@homebridge/node-pty-prebuilt-multiarch": "0.11.8",
"@homebridge/node-pty-prebuilt-multiarch": "^0.11.8",
"normalize-path": "^3.0.0",
"normalize-url": "^5.3.1",
"open": "^9.1.0",
Expand Down
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 c8ad866

Please sign in to comment.