Skip to content

Commit

Permalink
Allow Dockerfile to build again (#1593)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Mr0grog committed Oct 19, 2023
1 parent 797ad52 commit 86d41b1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 86d41b1

Please sign in to comment.