From d8d87f0a7aaf5a3a6106a21c7c63bec564983fd4 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Thu, 21 Dec 2023 13:03:44 +0100 Subject: [PATCH] Dockerfile: there is no python anymore, use python3 `python` is not a valid package name anymore, thus explicitly using `python3` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b3f4641..3869fd7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN tar xvf "${QEMU_TARBALL}" RUN # Build source # These seem to be the only deps actually required for a successful build -RUN apt-get -y install python build-essential libglib2.0-dev libpixman-1-dev ninja-build +RUN apt-get -y install python3 build-essential libglib2.0-dev libpixman-1-dev ninja-build # These don't seem to be required but are specified here: https://wiki.qemu.org/Hosts/Linux RUN apt-get -y install libfdt-dev zlib1g-dev # Not required or specified anywhere but supress build warnings