From c96e42ceaba2212edd8ef4417471e64c0bfb04cd Mon Sep 17 00:00:00 2001 From: formless63 <59035664+formless63@users.noreply.github.com> Date: Wed, 17 Jun 2026 14:02:56 -0400 Subject: [PATCH] Upgrade Node.js base image to version 24-alpine (#101) * Upgrade Node.js base image to version 24-alpine Current dockerfile fails to build. Updating Node.js base image from version 20 to 24 brings it to the current LTS and builds successfully for me. * removed unnecessary yarn install step --- dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dockerfile b/dockerfile index 39e449c..adf95cd 100644 --- a/dockerfile +++ b/dockerfile @@ -1,9 +1,6 @@ # Written by Ange Cesari # Use official Node.js based on Alpine -FROM node:20-alpine - -# Install Yarn -RUN apk add --no-cache yarn +FROM node:24-alpine # Create dir for application WORKDIR /usr/src/app