runner-image (sha256:319c8e1c9599953126d734d77339a1f29434d276d21f3f4944ed306bb08bf1a2)

Published 2026-09-15 16:26:49 +00:00 by qwolff in public/runner-image

Installation

docker pull code.tilo.so/public/runner-image@sha256:319c8e1c9599953126d734d77339a1f29434d276d21f3f4944ed306bb08bf1a2
sha256:319c8e1c9599953126d734d77339a1f29434d276d21f3f4944ed306bb08bf1a2

About this package

Special image built for using with https://github.com/nektos/act

Image layers

ARG RELEASE
ARG LAUNCHPAD_BUILD_ARCH
LABEL org.opencontainers.image.version=24.04
ADD file:d938ff3d4eee15d8600de84bf85eac6ecd0f20bc92dfe305dafbff0bdc974c0f in /
CMD ["/bin/bash"]
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase sq wget tzdata ; apt-get dist-clean # buildkit
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; apt-get dist-clean # buildkit
RUN /bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends autoconf automake bzip2 default-libmysqlclient-dev dpkg-dev file g++ gcc imagemagick libbz2-dev libc6-dev libcurl4-openssl-dev libdb-dev libevent-dev libffi-dev libgdbm-dev libglib2.0-dev libgmp-dev libjpeg-dev libkrb5-dev liblzma-dev libmagickcore-dev libmagickwand-dev libmaxminddb-dev libncurses5-dev libncursesw5-dev libpng-dev libpq-dev libreadline-dev libsqlite3-dev libssl-dev libtool libwebp-dev libxml2-dev libxslt-dev libyaml-dev make patch unzip xz-utils zlib1g-dev ; apt-get dist-clean # buildkit
ARG TARGETARCH
ARG FROM_IMAGE TARGETARCH
ARG FROM_IMAGE FROM_TAG TARGETARCH
ARG FROM_IMAGE FROM_TAG NODE_VERSION TARGETARCH
ARG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION TARGETARCH
ARG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION TARGETARCH TYPE
ARG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE
ENV DEBIAN_FRONTEND=noninteractive
SHELL [ "/bin/bash", "--login", "-e", "-o", "pipefail", "-c" ]
WORKDIR /tmp
COPY dir:5b6280ac48c48d01a24beadefcc7925797e30b58c4e23397b73e6ae12037177d in /imagegeneration/installers
|8 DISTRO=ubuntu FROM_IMAGE=buildpack-deps FROM_TAG=24.04 NODE_VERSION=20 24 RUNNER=root TARGETARCH=amd64 TYPE=act /bin/sh -c bash /imagegeneration/installers/${TYPE}.sh
ARG BUILD_DATE DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE
ARG BUILD_DATE BUILD_TAG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE
ARG BUILD_DATE BUILD_REF BUILD_TAG DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE
ARG BUILD_DATE BUILD_REF BUILD_TAG BUILD_TAG_VERSION DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE
ARG BUILD_DATE BUILD_OWNER BUILD_REF BUILD_TAG BUILD_TAG_VERSION DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE
ARG BUILD_DATE BUILD_OWNER BUILD_REF BUILD_REPO BUILD_TAG BUILD_TAG_VERSION DISTRO FROM_IMAGE FROM_TAG NODE_VERSION RUNNER TARGETARCH TYPE
LABEL org.opencontainers.image.created="${BUILD_DATE}"
LABEL org.opencontainers.image.vendor="${BUILD_OWNER}"
LABEL org.opencontainers.image.authors="https://github.com/${BUILD_OWNER}"
LABEL org.opencontainers.image.url="https://github.com/${BUILD_OWNER}/${BUILD_REPO}/tree/${BUILD_REF}/linux/${DISTRO}/${TYPE}/"
LABEL org.opencontainers.image.source="https://github.com/${BUILD_OWNER}/${BUILD_REPO}"
LABEL org.opencontainers.image.documentation="https://github.com/${BUILD_OWNER}/${BUILD_REPO}"
LABEL org.opencontainers.image.version="${BUILD_TAG_VERSION}"
LABEL org.opencontainers.image.title="${BUILD_TAG}-${TARGETARCH}"
LABEL org.opencontainers.image.description="Special image built for using with https://github.com/nektos/act"
LABEL org.opencontainers.image.revision="${BUILD_REF}"
USER ${RUNNER}
/bin/bash --login -e -o pipefail -c
ARG TARGETARCH=amd64
USER root
ENV DEBIAN_FRONTEND=noninteractive RUSTUP_HOME=/opt/rust CARGO_HOME=/opt/cargo BUN_INSTALL=/opt/bun BUN_INSTALL_BIN=/opt/bun/bin PATH=/opt/bun/bin:/opt/cargo/bin:/opt/rust/bin:/usr/local/bin:/usr/bin:/bin
ARG RUST_VERSION=1.94.0
ARG SCCACHE_VERSION=0.8.2
ARG MC_VERSION=RELEASE.2025-08-13T08-35-41Z
ARG UV_VERSION=0.5.11
ARG PLAYWRIGHT_VERSION=1.59.1
RUN |6 TARGETARCH=amd64 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.8.2 MC_VERSION=RELEASE.2025-08-13T08-35-41Z UV_VERSION=0.5.11 PLAYWRIGHT_VERSION=1.59.1 /bin/bash --login -e -o pipefail -c case "$TARGETARCH" in amd64) ubuntu_mirror=https://archive.ubuntu.com/ubuntu ;; arm64) ubuntu_mirror=https://ports.ubuntu.com/ubuntu-ports ;; *) echo "unsupported architecture: $TARGETARCH" >&2; exit 1 ;; esac && rm -rf /etc/apt/apt-mirrors.txt /etc/apt/sources.list.d/* && printf 'deb %s noble main universe\ndeb %s noble-updates main universe\ndeb %s noble-security main universe\n' "$ubuntu_mirror" "$ubuntu_mirror" "$ubuntu_mirror" > /etc/apt/sources.list && for attempt in 1 2 3 4 5; do rm -rf /var/lib/apt/lists/*; apt-get -o Acquire::Retries=3 update && break; test "$attempt" = 5 && exit 1; sleep 5; done && apt-get install -y --no-install-recommends build-essential pkg-config libssl-dev ca-certificates curl git jq unzip python3 python3-pip python3-venv gnupg && mkdir -p /etc/apt/keyrings && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" > /etc/apt/sources.list.d/nodesource.list && for attempt in 1 2 3 4 5; do apt-get -o Acquire::Retries=3 update && break; test "$attempt" = 5 && exit 1; sleep 5; done && apt-get install -y --no-install-recommends nodejs && rm -rf /var/lib/apt/lists/* # buildkit
RUN |6 TARGETARCH=amd64 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.8.2 MC_VERSION=RELEASE.2025-08-13T08-35-41Z UV_VERSION=0.5.11 PLAYWRIGHT_VERSION=1.59.1 /bin/bash --login -e -o pipefail -c curl -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain ${RUST_VERSION} && rustup component add clippy rustfmt && chmod -R a+rw /opt/rust /opt/cargo # buildkit
RUN |6 TARGETARCH=amd64 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.8.2 MC_VERSION=RELEASE.2025-08-13T08-35-41Z UV_VERSION=0.5.11 PLAYWRIGHT_VERSION=1.59.1 /bin/bash --login -e -o pipefail -c case "$TARGETARCH" in amd64) archive_arch=x86_64 ;; arm64) archive_arch=aarch64 ;; *) echo "unsupported architecture: $TARGETARCH" >&2; exit 1 ;; esac && curl -sSL https://github.com/mozilla/sccache/releases/download/v${SCCACHE_VERSION}/sccache-v${SCCACHE_VERSION}-${archive_arch}-unknown-linux-musl.tar.gz | tar -xz -C /tmp && mv /tmp/sccache-*/sccache /usr/local/bin/ && chmod +x /usr/local/bin/sccache && rm -rf /tmp/sccache-* # buildkit
RUN |6 TARGETARCH=amd64 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.8.2 MC_VERSION=RELEASE.2025-08-13T08-35-41Z UV_VERSION=0.5.11 PLAYWRIGHT_VERSION=1.59.1 /bin/bash --login -e -o pipefail -c case "$TARGETARCH" in amd64) mc_sha256=01f866e9c5f9b87c2b09116fa5d7c06695b106242d829a8bb32990c00312e891 ;; arm64) mc_sha256=14c8c9616cfce4636add161304353244e8de383b2e2752c0e9dad01d4c27c12c ;; *) echo "unsupported architecture: $TARGETARCH" >&2; exit 1 ;; esac && curl -sSfL "https://github.com/minio/mc/releases/download/${MC_VERSION}/mc.linux-${TARGETARCH}.${MC_VERSION}" -o /usr/local/bin/mc && echo "${mc_sha256} /usr/local/bin/mc" | sha256sum -c - && chmod +x /usr/local/bin/mc # buildkit
RUN |6 TARGETARCH=amd64 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.8.2 MC_VERSION=RELEASE.2025-08-13T08-35-41Z UV_VERSION=0.5.11 PLAYWRIGHT_VERSION=1.59.1 /bin/bash --login -e -o pipefail -c case "$TARGETARCH" in amd64) archive_arch=x86_64 ;; arm64) archive_arch=aarch64 ;; *) echo "unsupported architecture: $TARGETARCH" >&2; exit 1 ;; esac && curl -sSL https://github.com/astral-sh/uv/releases/download/${UV_VERSION}/uv-${archive_arch}-unknown-linux-gnu.tar.gz | tar -xz -C /tmp && mv /tmp/uv-${archive_arch}-unknown-linux-gnu/uv /tmp/uv-${archive_arch}-unknown-linux-gnu/uvx /usr/local/bin/ && rm -rf /tmp/uv-${archive_arch}-unknown-linux-gnu # buildkit
RUN |6 TARGETARCH=amd64 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.8.2 MC_VERSION=RELEASE.2025-08-13T08-35-41Z UV_VERSION=0.5.11 PLAYWRIGHT_VERSION=1.59.1 /bin/bash --login -e -o pipefail -c curl -fsSL https://bun.sh/install | BUN_INSTALL=/opt/bun bash && ln -s /opt/bun/bin/bun /usr/local/bin/bun && ln -s /opt/bun/bin/bun /usr/local/bin/bunx # buildkit
ENV PLAYWRIGHT_BROWSERS_PATH=/opt/pw-browsers
RUN |6 TARGETARCH=amd64 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.8.2 MC_VERSION=RELEASE.2025-08-13T08-35-41Z UV_VERSION=0.5.11 PLAYWRIGHT_VERSION=1.59.1 /bin/bash --login -e -o pipefail -c bun add -g playwright@${PLAYWRIGHT_VERSION} && playwright install-deps && playwright install chromium firefox webkit && chmod -R a+rx /opt/pw-browsers # buildkit
ENV SCCACHE_IDLE_TIMEOUT=0

Labels

Key Value
io.buildah.version 1.35.0
org.opencontainers.image.authors https://github.com/catthehacker
org.opencontainers.image.created 2026-08-15 12:55:12Z
org.opencontainers.image.description Special image built for using with https://github.com/nektos/act
org.opencontainers.image.documentation https://github.com/catthehacker/catthehacker/docker_images
org.opencontainers.image.revision e2f8efe464c82732f78e967ee709c00b6af53643
org.opencontainers.image.source https://github.com/catthehacker/catthehacker/docker_images
org.opencontainers.image.title act-24.04-amd64
org.opencontainers.image.url https://github.com/catthehacker/catthehacker/docker_images/tree/e2f8efe464c82732f78e967ee709c00b6af53643/linux/ubuntu/act/
org.opencontainers.image.vendor catthehacker
org.opencontainers.image.version 20260815
Details
Container
2026-09-15 16:26:49 +00:00
8315
OCI / Docker
linux/amd64
https://github.com/catthehacker
1.6 GiB
Versions (6) View all
latest 2026-09-25
buildcache 2026-09-25
20260925 2026-09-25
20260922 2026-09-22
20260921 2026-09-21