From 91c537f195404ed95bf80e3d8fa47a27e59cdbd3 Mon Sep 17 00:00:00 2001 From: Shrukan Date: Sat, 17 Feb 2024 16:20:54 -0700 Subject: [PATCH] Install node in container for actions --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index e6aaeb9..913250e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,9 @@ RUN pip install --break-system-packages meson gcovr RUN curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/bin +# Install node for actions +RUN curl -fsSL https://deb.nodesource.com/setup_current.x | bash - && apt-get install -y nodejs + # Install latest doxygen RUN wget --progress=bar:force:noscroll https://www.doxygen.nl/files/doxygen-1.10.0.linux.bin.tar.gz && \ tar -xzf doxygen-1.10.0.linux.bin.tar.gz && \