File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ report.md
1515__pycache__ /
1616* .pyc
1717.venv /
18- uv.lock
18+ .python-version
1919dashboard /node_modules /
2020# Dashboard build output (built in Dockerfile, not committed)
2121memory-server /src /static /assets /
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ RUN dnf install -y --nodocs --allowerasing \
1717 socat \
1818 && dnf clean all
1919
20- # Node.js 22 via NodeSource (UBI repos only have Node 16 )
21- RUN curl -fsSL https://rpm.nodesource.com/setup_22.x | bash - \
22- && dnf install -y --nodocs nodejs \
23- && dnf clean all
20+ # Node.js 22 (official binary tarball )
21+ RUN ARCH=$(uname -m | sed 's/x86_64/x64/' | sed 's/aarch64/arm64/' ) \
22+ && curl -fsSL "https://nodejs.org/dist/v22.15.0/node-v22.15.0-linux-${ARCH}.tar.gz" \
23+ | tar -xz -C /usr/local --strip-components=1
2424
2525
2626# Make python3.12 the default
You can’t perform that action at this time.
0 commit comments