File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1010 - name : Use Node.js
1111 uses : actions/setup-node@v6
1212 with :
13- node-version : 20
13+ node-version : 24
1414 cache : ' npm'
1515 - name : Install dependencies
1616 run : npm ci
Original file line number Diff line number Diff line change 1- FROM node:20 -alpine as builder
1+ FROM node:24 -alpine as builder
22WORKDIR /build
33
44# install dependencies + cache them
@@ -12,7 +12,7 @@ COPY . /build
1212RUN npm run build
1313
1414
15- FROM node:20 -alpine as prod-builder
15+ FROM node:24 -alpine as prod-builder
1616WORKDIR /prod-build
1717
1818# copy production assets
@@ -22,7 +22,7 @@ COPY --from=builder /build/packages/app ./packages/app
2222RUN (cd packages/app && npm prune --omit=dev)
2323
2424
25- FROM node:20 -alpine
25+ FROM node:24 -alpine
2626WORKDIR /app
2727EXPOSE 3000
2828ENV NODE_ENV=production
You can’t perform that action at this time.
0 commit comments