From 615d2a466e2e940b0cf648431f6604b7ac7c06cf Mon Sep 17 00:00:00 2001 From: Erik Gierlach Date: Sun, 2 Jun 2024 18:53:43 -0400 Subject: [PATCH] feat: Update the base image and deps to latest (#242) 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. --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 503585f..e287d2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM steamcmd/steamcmd:ubuntu-22 +FROM steamcmd/steamcmd:ubuntu-24 STOPSIGNAL SIGTERM @@ -41,7 +41,7 @@ RUN dpkg --add-architecture i386 && \ libxml2-utils \ telnet \ expect \ - netcat \ + netcat-openbsd \ locales \ libgdiplus \ cron \ @@ -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