From 418fad2d5848c89435a49ef8f244fee1012e5d25 Mon Sep 17 00:00:00 2001 From: William Boman Date: Sat, 6 Apr 2024 19:47:59 +0200 Subject: [PATCH] chore: pin Node to v18 (#185) QEMU is unable to build the image on linux/arm/v7 on the latest LTS (v20). Seemingly related to https://gitlab.com/qemu-project/qemu/-/issues/1729. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 504db98..cf7c27d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:lts-alpine +FROM node:18-alpine ARG THELOUNGE_VERSION=4.4.1