Skip to content

Commit

Permalink
feat: Update the base image and deps to latest (#242)
Browse files Browse the repository at this point in the history
This change updates ubuntu base image to latest LTS 24.04. Additionally, it changes the version of node to 22. Both of these changes resolve a many vulnerabilities reported in dockerhub.
  • Loading branch information
piraxis authored Jun 2, 2024
1 parent 23944b1 commit 615d2a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM steamcmd/steamcmd:ubuntu-22
FROM steamcmd/steamcmd:ubuntu-24

STOPSIGNAL SIGTERM

Expand Down Expand Up @@ -41,7 +41,7 @@ RUN dpkg --add-architecture i386 && \
libxml2-utils \
telnet \
expect \
netcat \
netcat-openbsd \
locales \
libgdiplus \
cron \
Expand All @@ -57,7 +57,7 @@ RUN dpkg --add-architecture i386 && \
# Install NodeJS
RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh; \
chmod 500 nsolid_setup_deb.sh; \
./nsolid_setup_deb.sh 21; \
./nsolid_setup_deb.sh 22; \
apt-get install nodejs -y

# Install gamedig
Expand Down

0 comments on commit 615d2a4

Please sign in to comment.