aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-10-04 09:48:16 -0400
committerGitHub <noreply@github.com>2021-10-04 09:48:16 -0400
commitc625dcb3abcb4815192d9ebccd4945bc098f7da5 (patch)
treef8c25a443f30338a8e008b1314320f22c8daa3d5
parent657d3ddf64d3f0ede552aad5c279226862a5a1f5 (diff)
downloadoss-fuzz-c625dcb3abcb4815192d9ebccd4945bc098f7da5.tar.gz
ClusterFuzzLite: Install nodejs in cifuzz-base. (#6534)
We will use this to upload artifacts in the future.
-rw-r--r--infra/cifuzz/cifuzz-base/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/infra/cifuzz/cifuzz-base/Dockerfile b/infra/cifuzz/cifuzz-base/Dockerfile
index 5e1e7af15..8fc25502f 100644
--- a/infra/cifuzz/cifuzz-base/Dockerfile
+++ b/infra/cifuzz/cifuzz-base/Dockerfile
@@ -17,7 +17,8 @@
FROM gcr.io/oss-fuzz-base/base-runner
RUN apt-get update && \
- apt-get install systemd -y && \
+ apt-get install -y systemd && \
+ apt-get install -y --no-install-recommends nodejs npm && \
wget https://download.docker.com/linux/ubuntu/dists/focal/pool/stable/amd64/docker-ce-cli_20.10.8~3-0~ubuntu-focal_amd64.deb -O /tmp/docker-ce.deb && \
dpkg -i /tmp/docker-ce.deb && rm /tmp/docker-ce.deb