Skip to content

Commit f1b72c3

Browse files
renovate[bot]nikku
authored andcommitted
chore: update dependency node to v24
1 parent 5e6c854 commit f1b72c3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
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

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:24-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:24-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:24-alpine
2626
WORKDIR /app
2727
EXPOSE 3000
2828
ENV NODE_ENV=production

0 commit comments

Comments
 (0)