From 8f34ec0be08eae19680a3a167f3c90679bd14403 Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Thu, 17 Oct 2024 18:13:55 +0000 Subject: [PATCH] fix(qemu images): use apt-get --- tools/qemu-ubuntu-img/generate-images.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/qemu-ubuntu-img/generate-images.py b/tools/qemu-ubuntu-img/generate-images.py index 9861f9f..850dfa2 100755 --- a/tools/qemu-ubuntu-img/generate-images.py +++ b/tools/qemu-ubuntu-img/generate-images.py @@ -20,9 +20,9 @@ template = ''' FROM ubuntu:{version} ENV DEBIAN_FRONTEND=noninteractive -RUN apt update -RUN apt install -y debootstrap qemu-utils -RUN apt install -y linux-image-generic +RUN apt-get update +RUN apt-get install -y debootstrap qemu-utils +RUN apt-get install -y linux-image-generic ENV TMPDIR=/tmp/ubuntu ENV IMAGEDIR=/tmp/image