Skip to content

Commit

Permalink
hotfix/install nodejs 21 (#223)
Browse files Browse the repository at this point in the history
* fix: Install NodeJS 21 using the new scripts
  • Loading branch information
vinanrra authored Dec 12, 2023
1 parent 55ac926 commit 3283cea
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,14 @@ RUN dpkg --add-architecture i386 && \
distro-info \
git

# Install NodeJS
RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh \
chmod 500 nsolid_setup_deb.sh \
./nsolid_setup_deb.sh 21 \
apt-get install nodejs -y

# Install gamedig
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - ; \
apt install -y nodejs && npm install -g gamedig
RUN install -g gamedig

# Install latest su-exec
RUN set -ex; \
Expand Down

0 comments on commit 3283cea

Please sign in to comment.