From e743edcfec2a776bd845c5c0c0a1e37a96cc7651 Mon Sep 17 00:00:00 2001 From: BtbN Date: Thu, 23 Jan 2025 01:57:41 +0100 Subject: [PATCH] Include NodeJS in base image --- images/base/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/images/base/Dockerfile b/images/base/Dockerfile index e023a21fd1..ba8a2c6d43 100644 --- a/images/base/Dockerfile +++ b/images/base/Dockerfile @@ -12,6 +12,8 @@ RUN \ gtk-doc-tools gobject-introspection gawk \ ocaml ocamlbuild libnum-ocaml-dev indent p7zip-full \ python3-setuptools python3-jinja2 python3-jsonschema python3-apt python-is-python3 && \ + curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \ + apt-get -y install nodejs && \ apt-get -y clean && \ git config --global user.email "builder@localhost" && \ git config --global user.name "Builder" && \