From cf50ff26d2d3f73e995b72b0dae670e702508b6c Mon Sep 17 00:00:00 2001 From: Hugo Hromic Date: Thu, 27 Jun 2019 11:47:23 +0100 Subject: [PATCH] Update Dockerfile base image to Debian Buster (#295) 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 23cfd1c..706a5fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM debian:stretch +FROM debian:buster ENV DEBIAN_FRONTEND noninteractive