feat: Initial act-runner-extended container image
Some checks failed
build-image / Semantic Release (Dry-run) (push) Successful in 50s
build-image / Container image (push) Failing after 6m9s
build-image / Semantic Release (push) Has been skipped

This commit is contained in:
2025-08-19 20:26:18 +10:00
parent 0fbaf85b33
commit 3315322b5c
2 changed files with 134 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
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/*