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
This commit is contained in:
Andrei Vagin
2021-08-16 15:53:28 -07:00
committed by gVisor bot
parent ce58d71fd5
commit bb13d015a4
+1 -1
View File
@@ -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