dockerfile aktualisiert
Some checks failed
Deploy on push / build (push) Failing after 50s
Deploy on push / push (push) Has been skipped

Correctly install nodejs
This commit is contained in:
2026-02-13 20:15:32 +01:00
parent e8cb9a36a8
commit e50b5d0ab2

View File

@@ -37,7 +37,7 @@ RUN sudo apt install -y build-essential zlib1g-dev libncurses5-dev libgdbm-dev l
# install nodejs # install nodejs
RUN sudo apt install -y curl && \ RUN sudo apt install -y curl && \
curl -sL https://deb.nodesource.com/setup_22.x -o nodesource_setup.sh && \ curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
sudo apt install -y nodejs && \ sudo apt install -y nodejs && \
sudo apt install -y npm sudo apt install -y npm