From 86d41b17cfb30f6256381f2970b0af6211bb3d50 Mon Sep 17 00:00:00 2001 From: Rob Brackett Date: Thu, 19 Oct 2023 10:22:43 -0700 Subject: [PATCH] Allow Dockerfile to build again (#1593) Update the base version of Node.js to the latest 18.x release and stop updating NPM as the first step in the build. This fixes an issue where the version of Node.js we were using wasn't compatible with the latest NPM, and which broke builds. --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f508c56c..aebb0875 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ -FROM node:18.16.0-slim AS base +FROM node:18.18.2-slim AS base # Name for the version/release of the software. (Optional) ARG RELEASE +# FIXME: This repo is no longer actively maintained! If you start using it, you +# should re-enable this, which may also require updating the Node.js version. # Upgrade to latest NPM. -RUN npm install -g npm +# RUN npm install -g npm WORKDIR /app