ci: add node.js to Docker image for checkout action
CI / build-and-test (push) Failing after 1s

This commit is contained in:
2026-07-18 15:19:41 +02:00
parent 9130ee4b03
commit 5fe40a5242
+3 -1
View File
@@ -1,4 +1,6 @@
FROM ubuntu:24.04 FROM ubuntu:24.04
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apt-get update && apt-get install -y --no-install-recommends \
gcc cmake libzstd-dev git ca-certificates && \ gcc cmake libzstd-dev git ca-certificates curl && \
curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \
apt-get install -y --no-install-recommends nodejs && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*