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/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.18.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:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd
```

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

```Dockerfile
FROM node:22-alpine
FROM node:24-alpine@sha256:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd

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:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd 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:fdddfb3e688158251943d52eba361de991548f6814007acba4917ae6b512d6be AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
Expand Down
Loading