diff options
author | Hugo Hromic <[email protected]> | 2019-06-27 11:47:23 +0100 |
---|---|---|
committer | XECDesign <[email protected]> | 2019-06-27 11:47:23 +0100 |
commit | cf50ff26d2d3f73e995b72b0dae670e702508b6c (patch) | |
tree | 0a7e96368447e524f678c093685805fe5e2690a1 /Dockerfile | |
parent | a4be08e275129aea19ba47dd9ff791e1a0037132 (diff) |
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.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ -FROM debian:stretch +FROM debian:buster ENV DEBIAN_FRONTEND noninteractive |