Skip to content

Commit f19de85

Browse files
chore: update node.js to v22
1 parent 6b72771 commit f19de85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

support/docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:20-alpine as builder
1+
FROM node:22-alpine as builder
22
WORKDIR /build
33

44
# install dependencies + cache them
@@ -12,7 +12,7 @@ COPY . /build
1212
RUN npm run build
1313

1414

15-
FROM node:20-alpine as prod-builder
15+
FROM node:22-alpine as prod-builder
1616
WORKDIR /prod-build
1717

1818
# copy production assets
@@ -22,7 +22,7 @@ COPY --from=builder /build/packages/app ./packages/app
2222
RUN (cd packages/app && npm prune --omit=dev)
2323

2424

25-
FROM node:20-alpine
25+
FROM node:22-alpine
2626
WORKDIR /app
2727
EXPOSE 3000
2828
ENV NODE_ENV=production

0 commit comments

Comments
 (0)