Skip to content

Commit 603c449

Browse files
authored
build(docs): pin docs builder image to node 25.1 (#714)
## 📝 Description Pinned the docs build stage to node:25.1 so Docker no longer pulls latest. This avoids the breaking change introduced in Node 25.2. Adds also the missing reference `reference/os-ubuntu-images/ubuntu-2404-arm-image`. Check [the issue](renderedtext/tasks#8917). ## ✅ Checklist - [x] I have tested this change - [x] ~This change requires documentation update~ N/A
1 parent 4c85275 commit 603c449

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

docs/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG RUNNER_IMAGE=nginx
22

33
# Build stage
4-
FROM node AS builder
4+
FROM node:25.1 AS builder
55
WORKDIR /app
66

77
COPY package.json package.json
@@ -44,5 +44,3 @@ WORKDIR /app
4444

4545
ADD default.conf /etc/nginx/conf.d/default.conf
4646
COPY --from=builder /app/build/ /usr/share/nginx/html/
47-
48-

docs/sidebars.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const sidebars = {
8282
'using-semaphore/tasks',
8383
]
8484
},
85-
85+
8686

8787
{
8888
type: 'category',
@@ -95,7 +95,7 @@ const sidebars = {
9595
}
9696
]
9797
},
98-
98+
9999

100100
{
101101
type: 'category',
@@ -197,7 +197,8 @@ const sidebars = {
197197
'reference/os-ubuntu-images/ubuntu-2004-image',
198198
'reference/os-ubuntu-images/ubuntu-2204-image',
199199
'reference/os-ubuntu-images/ubuntu-2204-arm-image',
200-
'reference/os-ubuntu-images/ubuntu-2404-image'
200+
'reference/os-ubuntu-images/ubuntu-2404-image',
201+
'reference/os-ubuntu-images/ubuntu-2404-arm-image'
201202
]
202203
},
203204
]

0 commit comments

Comments
 (0)