Fixed node install
Some checks failed
Deploy on push / push (push) Has been cancelled
Deploy on push / build (push) Has been cancelled

This commit is contained in:
2026-02-13 20:39:42 +01:00
parent 5137cf12e2
commit 995be0a4d9

View File

@@ -37,10 +37,10 @@ RUN sudo apt install -y build-essential zlib1g-dev libncurses5-dev libgdbm-dev l
# install Node.js 22
RUN apt update && \
apt install -y curl && \
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
apt install -y nodejs && \
node -v && npm -v
apt install -y curl && \
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
apt update && \
apt install -y nodejs
# install .net 10
RUN sudo add-apt-repository ppa:dotnet/backports && \