13 lines
298 B
Docker
13 lines
298 B
Docker
FROM catthehacker/ubuntu:act-24.04 AS source
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
gettext \
|
|
genisoimage \
|
|
libguestfs-tools \
|
|
qemu-system-x86 \
|
|
qemu-utils \
|
|
supermin && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|