From c2432a17a978e3312836e7a1cbc469127e88d9ea Mon Sep 17 00:00:00 2001 From: Emile Nijssen Date: Sun, 17 Dec 2023 22:39:15 +0100 Subject: [PATCH] =?UTF-8?q?node=2014=20=E2=86=92=20node=2020?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2695361..cbe70ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,4 @@ -# There's an issue with node:16-alpine. -# On Raspberry Pi, the following crash happens: - -# #FailureMessage Object: 0x7e87753c -# # -# # Fatal error in , line 0 -# # unreachable code -# # -# # -# # - -FROM docker.io/library/node:14-alpine@sha256:dc92f36e7cd917816fa2df041d4e9081453366381a00f40398d99e9392e78664 AS build_node_modules +FROM docker.io/library/node:20-alpine AS build_node_modules # Copy Web UI COPY src/ /app/ @@ -18,7 +7,7 @@ RUN npm ci --production # Copy build result to a new image. # This saves a lot of disk space. -FROM docker.io/library/node:14-alpine@sha256:dc92f36e7cd917816fa2df041d4e9081453366381a00f40398d99e9392e78664 +FROM docker.io/library/node:20-alpine COPY --from=build_node_modules /app /app # Move node_modules one directory up, so during development