We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b72771 commit f19de85Copy full SHA for f19de85
support/docker/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:20-alpine as builder
+FROM node:22-alpine as builder
2
WORKDIR /build
3
4
# install dependencies + cache them
@@ -12,7 +12,7 @@ COPY . /build
12
RUN npm run build
13
14
15
-FROM node:20-alpine as prod-builder
+FROM node:22-alpine as prod-builder
16
WORKDIR /prod-build
17
18
# copy production assets
@@ -22,7 +22,7 @@ COPY --from=builder /build/packages/app ./packages/app
22
RUN (cd packages/app && npm prune --omit=dev)
23
24
25
-FROM node:20-alpine
+FROM node:22-alpine
26
WORKDIR /app
27
EXPOSE 3000
28
ENV NODE_ENV=production
0 commit comments