From bb13d015a4ffcedac42cce05ec9f1ff4728d12d7 Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Mon, 16 Aug 2021 15:50:30 -0700 Subject: imges/syzkaller: add --allow-releaseinfo-change to apt update Otherwise, it fails with this error: Get:3 http://security.debian.org/debian-security buster/updates InRelease Reading package lists... E: Repository 'http://deb.debian.org/debian buster InRelease' changed its 'Suite' value from 'stable' to 'oldstable' PiperOrigin-RevId: 391155532 --- images/syzkaller/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'images') diff --git a/images/syzkaller/Dockerfile b/images/syzkaller/Dockerfile index 9a85ae345..9f739d972 100644 --- a/images/syzkaller/Dockerfile +++ b/images/syzkaller/Dockerfile @@ -2,7 +2,7 @@ FROM gcr.io/syzkaller/env # This image is mostly for investigating syzkaller crashes, so let's install # developer tools. -RUN apt update && apt install -y git vim strace gdb procps +RUN apt update --allow-releaseinfo-change && DEBIAN_FRONTEND=noninteractive apt install -y git vim strace gdb procps WORKDIR /syzkaller/gopath/src/github.com/google/syzkaller -- cgit v1.2.3