Skip to content

Commit da537ae

Browse files
committed
Use Node 22 for faucet docker
1 parent 1463444 commit da537ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/faucet/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
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

1313
ADD . /app
1414
WORKDIR /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)
2626
RUN apk add --update nodejs
2727

2828
COPY --from=build-env /app/packages/faucet /app/packages/faucet

0 commit comments

Comments
 (0)