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
This commit is contained in:
formless63
2026-06-17 14:02:56 -04:00
committed by GitHub
parent cad9e49e67
commit c96e42ceab

View File

@@ -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