From a54fd1d0659abad0e4e2ddb15e95ab2d55354a16 Mon Sep 17 00:00:00 2001 From: Sebastian Ebling Date: Sat, 10 Feb 2024 20:58:36 +0100 Subject: [PATCH] Try with debian bookworm instead of alpine as newer node:alpine builds are failing with qemu multiarch builds https://github.com/nodejs/docker-node/issues/1798 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 34cfb98..08b9a72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:21-alpine +FROM node:21-bookworm-slim RUN mkdir /app && chown -R node:node /app