From c8224f34f96f0f4675744b4ed55ca42e4507998f Mon Sep 17 00:00:00 2001 From: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Thu, 18 Apr 2024 17:04:38 +0200 Subject: [PATCH] Dockerfile: use nodejs 18 for build workaround to get nodejs 20 working on older arm architectures --- Dockerfile | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index ee9af98..fc0c85c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,11 @@ -FROM docker.io/library/node:20-alpine AS build_node_modules +FROM docker.io/library/node:18-alpine AS build_node_modules # Copy Web UI COPY src/ /app/ WORKDIR /app RUN npm ci --omit=dev &&\ + # Enable this to run `npm run serve` + npm i -g nodemon &&\ mv node_modules /node_modules # Copy build result to a new image. @@ -20,11 +22,8 @@ COPY --from=build_node_modules /app /app # than what runs inside of docker. COPY --from=build_node_modules /node_modules /node_modules -RUN \ - # Enable this to run `npm run serve` - npm i -g nodemon &&\ - # Delete unnecessary files - npm cache clean --force && rm -rf ~/.npm +# Delete unnecessary files +RUN npm cache clean --force && rm -rf ~/.npm # Install Linux packages RUN apk add --no-cache \