From 06a5166182c991082a755dda8f800302a8010f54 Mon Sep 17 00:00:00 2001 From: Michael Baudino Date: Wed, 24 Apr 2024 09:22:26 +0200 Subject: [PATCH] Bump Node version from 16.x LTS to 20.x LTS Because NodeSource apparently removed Node 16 packages from their APT repository. This commit also bumps Gosu from 1.16 to 1.17. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d147834..ed9076a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,8 @@ ARG RUBYGEMS_VERSION_ARG="" \ BUNDLER_VERSION_ARG="" # Define dependencies base versions -ENV NODE_VERSION="16" \ - GOSU_VERSION="1.16" +ENV NODE_VERSION="20" \ + GOSU_VERSION="1.17" # Define some default variables ENV PORT="5000" \