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.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:2bdb65ed1dab192432bc31c95f94155ca5ad7fc1392fb7eb7526ab682fa5bf14
```

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

```Dockerfile
FROM node:22-alpine
FROM node:24-alpine@sha256:2bdb65ed1dab192432bc31c95f94155ca5ad7fc1392fb7eb7526ab682fa5bf14

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