Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/nextjs_bundle_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: '24.x'
node-version: '24.0.2'

# If pnpm is used, you need to switch the previous step with the following one. pnpm does not create a package-lock.json
# so the step above will fail to pull dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: actions/setup-node@v6
with:
node-version: 24.x
node-version: 24.0.2

- name: Cache pnpm modules
uses: actions/cache@v5
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Rebuild the source code only when needed
FROM node:24-alpine AS builder
FROM node:24.0.2-alpine AS builder

RUN apk add --no-cache libc6-compat git
RUN npm i -g pnpm
Expand All @@ -13,7 +13,7 @@ RUN npm run build
# RUN npm run build

# Production image, copy all the files and run next
FROM node:24-alpine AS runner
FROM node:24.0.2-alpine AS runner
WORKDIR /app

ENV NODE_ENV production
Expand Down
Loading