Skip to content
Merged
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
7 changes: 3 additions & 4 deletions docusaurus/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
#==================================================================
# Base Node image
#==================================================================
# Node version 22 is the curent LTS
# Node version 24 is the curent LTS
# The slim verision is based on a small debian image
FROM node:22-slim AS base
FROM node:24-slim AS base
ENV FORCE_COLOR=0
RUN corepack enable
WORKDIR /opt/docusaurus
Expand All @@ -31,8 +31,7 @@ COPY versioned_sidebars versioned_sidebars

# Configuration files
COPY docusaurus.config.js .
COPY package.json .
COPY package-lock.json* .
COPY package.json package-lock.json* ./
COPY sidebars.js .
COPY sidebars.json .
COPY test.js .
Expand Down
3 changes: 2 additions & 1 deletion docusaurus/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ services:
context: .
target: dev
container_name: docusaurus_local
mem_limit: 4g
ports:
- "3000:3000"
- "3000:3000"
volumes:
- ./../readmes:/opt/docusaurus/docs
environment:
Expand Down
10 changes: 5 additions & 5 deletions docusaurus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
"check-links": "lychee ./build/**/*.html --exclude-mail --exclude './**/proposal/**'"
},
"dependencies": {
"@docusaurus/core": "3.7.0",
"@docusaurus/preset-classic": "3.7.0",
"@docusaurus/theme-mermaid": "3.7.0",
"@docusaurus/core": "3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@docusaurus/theme-mermaid": "3.9.2",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.7.0",
"@docusaurus/types": "3.7.0"
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/types": "3.9.2"
},
"browserslist": {
"production": [
Expand Down

This file was deleted.

Loading