aboutsummaryrefslogtreecommitdiff
path: root/infra
diff options
context:
space:
mode:
authorjonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2021-08-26 11:22:24 -0700
committerGitHub <noreply@github.com>2021-08-26 11:22:24 -0700
commit8d90359bd9926145fcea28b0cc3b004f52aa3351 (patch)
tree051023615eed635b057c53f1533418424a307eac /infra
parent9d19fe950a870aa65593678238456a925fa47a40 (diff)
downloadoss-fuzz-8d90359bd9926145fcea28b0cc3b004f52aa3351.tar.gz
[cifuzz] Fix bug caused by Ubuntu upgrade. (#6318)
* [cifuzz] Fix bug caused by Ubuntu upgrade. systemd-detect-virt isn't being found. * fix
Diffstat (limited to 'infra')
-rw-r--r--infra/cifuzz/cifuzz-base/Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/infra/cifuzz/cifuzz-base/Dockerfile b/infra/cifuzz/cifuzz-base/Dockerfile
index d5ea93e21..a0374ec00 100644
--- a/infra/cifuzz/cifuzz-base/Dockerfile
+++ b/infra/cifuzz/cifuzz-base/Dockerfile
@@ -17,6 +17,7 @@
FROM gcr.io/oss-fuzz-base/base-runner
RUN apt-get update && \
+ apt-get install systemd -y && \
wget https://download.docker.com/linux/ubuntu/dists/xenial/pool/stable/amd64/docker-ce-cli_20.10.5~3-0~ubuntu-xenial_amd64.deb -O /tmp/docker-ce.deb && \
dpkg -i /tmp/docker-ce.deb && rm /tmp/docker-ce.deb