1
0

fix(qemu images): use apt-get

This commit is contained in:
dump_stack() 2024-10-17 18:13:55 +00:00
parent 2daa111196
commit 8f34ec0be0
Signed by: dump_stack
GPG Key ID: C9905BA72B5E02BB

View File

@ -20,9 +20,9 @@ template = '''
FROM ubuntu:{version} FROM ubuntu:{version}
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
RUN apt update RUN apt-get update
RUN apt install -y debootstrap qemu-utils RUN apt-get install -y debootstrap qemu-utils
RUN apt install -y linux-image-generic RUN apt-get install -y linux-image-generic
ENV TMPDIR=/tmp/ubuntu ENV TMPDIR=/tmp/ubuntu
ENV IMAGEDIR=/tmp/image ENV IMAGEDIR=/tmp/image