From 5576d3bd4552a79a53abfe069d0bd036d6096b13 Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Mon, 30 Aug 2021 06:49:43 -0700 Subject: [PATCH] [cifuzz] Install docker for focal. (#6339) --- infra/cifuzz/cifuzz-base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/cifuzz/cifuzz-base/Dockerfile b/infra/cifuzz/cifuzz-base/Dockerfile index a0374ec00..5e1e7af15 100644 --- a/infra/cifuzz/cifuzz-base/Dockerfile +++ b/infra/cifuzz/cifuzz-base/Dockerfile @@ -18,7 +18,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 && \ + 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 # Install newer Python from base-builder.