From 4909de53fcf05a6640ad9d11310dc305226adc4b Mon Sep 17 00:00:00 2001 From: Alois Klink Date: Sat, 12 Oct 2024 16:25:26 +0900 Subject: [PATCH] build: use `node:18.20-alpine3.19 in Docker Chromium 128.0.6613.84-r0 (used in Alpine 3.20) seems to be having issues with puppeteer/mermaid-cli, so we can't use it yet. See: 294af9f99ee91243209ba14a6b05b46fca1515c0 Fixes: https://github.com/mermaid-js/mermaid-cli/issues/762 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae64b21c..efa032ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:alpine +FROM node:18.20-alpine3.19 ENV CHROME_BIN="/usr/bin/chromium-browser" \ PUPPETEER_SKIP_DOWNLOAD="true"