diff options
author | Andrei Vagin <avagin@google.com> | 2021-08-16 15:50:30 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-08-16 15:53:28 -0700 |
commit | bb13d015a4ffcedac42cce05ec9f1ff4728d12d7 (patch) | |
tree | 20a5e0b0214f09eeb8dc4b32a990baac9c00fca0 /images | |
parent | ce58d71fd526587c0ed5e898e3a680c30c02c6d2 (diff) |
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
Diffstat (limited to 'images')
-rw-r--r-- | images/syzkaller/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
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 |