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.15.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:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f
```

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

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

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