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/bundle-analyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
pnpm --version
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: 'pnpm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sharevb-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
pnpm --version
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: 'pnpm'

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sharevb-docker-nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
pnpm --version
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: 'pnpm'

- name: Install dependencies
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:

- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: 'pnpm'

- name: Install dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
pnpm --version
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: 'pnpm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sharevb-docker-realease-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
pnpm --version
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: 'pnpm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sharevb-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: 'pnpm'

- name: Get Playwright version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sharevb-github-pages-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24

- uses: pnpm/action-setup@v2
name: Install pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sharevb-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:

- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: 'pnpm'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.19.0
24.16.0
8 changes: 4 additions & 4 deletions src/tools/dockerfile-memo/dockerfile.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Specifies the base image.

```Dockerfile
FROM ubuntu:20.04
FROM node:22-alpine
FROM node:24-alpine@sha256:21f403ab171f2dc89bad4dd69d7721bfd15f084ccb46cdd225f31f2bc59b5c9a
```

### `LABEL`
Expand Down Expand Up @@ -138,7 +138,7 @@ ONBUILD COPY . /app
## 🧪 Example Dockerfile

```Dockerfile
FROM node:22-alpine
FROM node:24-alpine@sha256:21f403ab171f2dc89bad4dd69d7721bfd15f084ccb46cdd225f31f2bc59b5c9a

LABEL maintainer="guillaume@example.com"

Expand Down Expand Up @@ -189,7 +189,7 @@ Dockerfile

```Dockerfile
# Stage 1: Build
FROM node:22-alpine AS builder
FROM node:24-alpine@sha256:21f403ab171f2dc89bad4dd69d7721bfd15f084ccb46cdd225f31f2bc59b5c9a AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
Expand Down Expand Up @@ -243,7 +243,7 @@ Multistage builds help you avoid bloated images:

```Dockerfile
# Build stage
FROM node:22 AS build
FROM node:24@sha256:40ad9f3064e67d6860b4bc3fe1880b2953934fd6320ada990e45fe0efa6badd7 AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
Expand Down
Loading