feat: Initial act-runner-extended container image
All checks were successful
build-image / Semantic Release (Dry-run) (push) Successful in 1m1s
build-image / Container image (push) Successful in 7m17s
build-image / Semantic Release (push) Successful in 3m6s

This commit is contained in:
2025-08-19 23:16:37 +10:00
parent 0fbaf85b33
commit b113968879
2 changed files with 158 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
# FROM gitea/act_runner:ubuntu-24.04-v25.08.01
FROM catthehacker/ubuntu:act-24.04-20250815 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/*