From d7bfaee2912f902ea837cabeea92aba56a1658a0 Mon Sep 17 00:00:00 2001 From: Dax McDonald <31839142+daxmc99@users.noreply.github.com> Date: Tue, 23 Feb 2021 12:48:13 -0700 Subject: [PATCH] Update to Debian buster and add ninja-build dependency Signed-off-by: Dax McDonald <31839142+daxmc99@users.noreply.github.com> --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index bf4140f..52d52cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Fetch base image -FROM debian:stretch as qemu +FROM debian:buster as qemu -ENV QEMU_VERSION 4.2.0 +ENV QEMU_VERSION 5.2.0 # Install build dependencies RUN apt-get update -qq && apt-get install -yqq \ build-essential \ @@ -13,6 +13,7 @@ RUN apt-get update -qq && apt-get install -yqq \ libpixman-1-dev \ pkg-config \ python \ + ninja-build \ --no-install-recommends RUN curl "https://download.qemu.org/qemu-${QEMU_VERSION}.tar.xz" -o "qemu-${QEMU_VERSION}.tar.xz"