File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 88# During the build step the working directory must be the repo root such that the
99# app has access to all installed dependencies.
1010
11- FROM node:20 -alpine as build-env
11+ FROM node:22 -alpine AS build-env
1212
1313ADD . /app
1414WORKDIR /app
@@ -21,8 +21,8 @@ RUN (cd packages/faucet && SKIP_BUILD=1 yarn pack-node)
2121
2222# Use Alpine and install Node.js which is 50% smaller than the -alpine version of the node
2323# image (53 MB including the faucet app).
24- FROM alpine:3.20
25- # Installs Node.js 20 (https://pkgs.alpinelinux.org/packages?name=nodejs&branch=v3.20 )
24+ FROM alpine:3.22
25+ # Installs Node.js 22 (https://pkgs.alpinelinux.org/packages?name=nodejs&branch=v3.22 )
2626RUN apk add --update nodejs
2727
2828COPY --from=build-env /app/packages/faucet /app/packages/faucet
You can’t perform that action at this time.
0 commit comments