Update Dockerfile base image to Debian Buster

With the Qemu version shipped with Debian Stretch, the `man-db` package
being installed for Buster in the image triggers many of these errors:

    qemu: Unsupported syscall: 383

This is a manifestation of the following bug:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=891109

This is resolved in the current Qemu version shipped with Debian Buster.
pull/295/head
Hugo Hromic 2019-06-27 11:20:30 +01:00
parent a4be08e275
commit 1bf239ae59
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
FROM debian:stretch
FROM debian:buster
ENV DEBIAN_FRONTEND noninteractive