image-forgejo-runner (6c8bec7b399a5d2faed2e0fbfb4387055cc86212)
Installation
docker pull git.auengun.net/homelab/image-forgejo-runner:6c8bec7b399a5d2faed2e0fbfb4387055cc86212sha256:8fd3df7b85ec05479d95361e3cdc96fe49ed74c0ed1118f6dd771188564fd54bAbout 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.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=22.04 |
| ADD file:32d41b6329e8f89fa4ac92ef97c04b7cfd5e90fb74e1509c3e27d7c91195b7c7 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 wget tzdata ; rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends git mercurial openssh-client subversion procps ; rm -rf /var/lib/apt/lists/* # 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 ; rm -rf /var/lib/apt/lists/* # 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:09c4e9994c0481ae7b269c82ce90f34869904a0a700e3293f7a6f7deed685278 in /imagegeneration/installers |
| |9 DISTRO=ubuntu FROM_IMAGE=buildpack-deps FROM_TAG=22.04 NODE_VERSION=16 18 20 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 |
| RUN /bin/bash --login -e -o pipefail -c apt update && apt install -y libpam0g-dev # buildkit |
| ENV GOLANG_VERSION=1.25.3 |
| LABEL net.auengun.golang.version=1.25.3 |
| RUN /bin/bash --login -e -o pipefail -c curl https://go.dev/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz -s -L -o go${GOLANG_VERSION}.linux-amd64.tar.gz && rm -rf /usr/local/go && tar -C /usr/local -xzf go${GOLANG_VERSION}.linux-amd64.tar.gz && rm go${GOLANG_VERSION}.linux-amd64.tar.gz # buildkit |
| ENV PATH=/opt/acttoolcache/node/18.20.8/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/go/bin |
| ENV STEP_VERSION=v0.28.7 |
| LABEL net.auengun.step.version=v0.28.7 |
| ADD https://spm-ca.pages.dev/assets/spm-root.crt /usr/local/share/ca-certificates/spm-cert.crt # buildkit |
| RUN /bin/bash --login -e -o pipefail -c update-ca-certificates && cp /usr/local/share/ca-certificates/spm-cert.crt /spm-root.crt && chmod 644 /spm-root.crt && mkdir ./step && export STEP_URL="https://github.com/smallstep/cli/releases/download/${STEP_VERSION}/step_linux_${STEP_VERSION##v}_amd64.tar.gz" && curl -s "$STEP_URL" -L -o - | tar xvz --strip-components=1 -C ./step && cp ./step/bin/step /usr/local/bin && rm -rf ./step # buildkit |
| RUN /bin/bash --login -e -o pipefail -c git config --system http."https://git.auengun.net/".sslCAInfo /spm-root.crt && git config --system --add safe.directory '/workspace' # buildkit |
| ENV NODE_EXTRA_CA_CERTS=/spm-root.crt |
| RUN /bin/bash --login -e -o pipefail -c rm -rf /root/.cache/pip && pip config set global.cert /etc/ssl/certs/ca-certificates.crt # buildkit |
| ENV REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt |
| ENV PIP_ROOT_USER_ACTION=ignore |
| ENV SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt |
| ENV INFISICAL_VERSION=v0.41.90 |
| ENV INFISICAL_API_URL=https://infisical.auengun.net/api |
| ENV INFISICAL_DISABLE_UPDATE_CHECK=true |
| LABEL net.auengun.infisical.version=v0.41.90 |
| RUN /bin/bash --login -e -o pipefail -c export INFISICAL_URL="https://github.com/infisical/infisical/releases/download/infisical-cli/${INFISICAL_VERSION}/infisical_${INFISICAL_VERSION##v}_linux_amd64.deb" && curl -s "$INFISICAL_URL" -L -o ./infisical_linux_amd64.deb && apt install -f -y ./infisical_linux_amd64.deb && rm -rf ./infisical_linux_amd64.deb # buildkit |
| ENV POETRY_VERSION=2.2.1 |
| LABEL net.auengun.poetry.version=2.2.1 |
| RUN /bin/bash --login -e -o pipefail -c python3 -m pip install poetry==${POETRY_VERSION} # buildkit |
| ENV ANSIBLE_VERSION=10.7.0 |
| LABEL net.auengun.ansible.version=10.7.0 |
| RUN /bin/bash --login -e -o pipefail -c python3 -m pip install ansible==${ANSIBLE_VERSION} # buildkit |
| ENV OPENTOFU_VERSION=v1.10.6 |
| ENV TOFU_ENABLE_STATIC_SENSITIVE=1 |
| LABEL net.auengun.opentofu.version=v1.10.6 |
| RUN /bin/bash --login -e -o pipefail -c export OPENTOFU_URL="https://github.com/opentofu/opentofu/releases/download/${OPENTOFU_VERSION}/tofu_${OPENTOFU_VERSION##v}_amd64.deb" && curl -s "$OPENTOFU_URL" -L -o ./opentofu_amd64.deb && apt install -f -y ./opentofu_amd64.deb && rm -rf ./opentofu_amd64.deb # buildkit |
| ENV GRYPE_VERSION=v0.103.0 |
| LABEL net.auengun.grype.version=v0.103.0 |
| RUN /bin/bash --login -e -o pipefail -c export GRYPE_URL="https://github.com/anchore/grype/releases/download/${GRYPE_VERSION}/grype_${GRYPE_VERSION##v}_linux_amd64.deb" && curl -s "$GRYPE_URL" -L -o ./grype_linux_amd64.deb && apt install -f -y ./grype_linux_amd64.deb && rm -rf ./grype_linux_amd64.deb # buildkit |
| ENV SYFT_VERSION=v1.37.0 |
| LABEL net.auengun.syft.version=v1.37.0 |
| RUN /bin/bash --login -e -o pipefail -c export SYFT_URL="https://github.com/anchore/syft/releases/download/${SYFT_VERSION}/syft_${SYFT_VERSION##v}_linux_amd64.deb" && curl -s "$SYFT_URL" -L -o ./syft_linux_amd64.deb && apt install -f -y ./syft_linux_amd64.deb && rm -rf ./syft_linux_amd64.deb # buildkit |
| ENV REUSE_VERSION=6.2.0 |
| LABEL net.auengun.reuse.version=6.2.0 |
| RUN /bin/bash --login -e -o pipefail -c python3 -m pip install reuse==${REUSE_VERSION} # buildkit |
| ENV COMMIT_AND_TAG_VERSION_VERSION=12.6.0 |
| LABEL net.auengun.commit-and-tag-version.version=12.6.0 |
| RUN /bin/bash --login -e -o pipefail -c npm i --global "commit-and-tag-version@${COMMIT_AND_TAG_VERSION_VERSION}" # buildkit |
| RUN /bin/bash --login -e -o pipefail -c apt install -y apt-utils gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 libasound2-dev # buildkit |
| RUN /bin/bash --login -e -o pipefail -c curl -L https://nixos.org/nix/install | sh -s -- --daemon # buildkit |
| RUN /bin/bash --login -e -o pipefail -c cat <<EOF >> /etc/ssh/ssh_config.d/default-timeout ServerAliveCountMax 3 ServerAliveInterval 15 EOF # buildkit |
| RUN /bin/bash --login -e -o pipefail -c cat <<EOF >> /etc/ssh/ssh_known_hosts @cert-authority * ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAwv6FShAz9+pvPsfFSI6XIiPxXx6UOzw67JfSZbSF92yQ6toqfPPXrpSn+FmbCw0iFgnG3+X3zhTbUHqG708Y0= EOF # buildkit |
Labels
| Key | Value |
|---|---|
| io.buildah.version | 1.35.0 |
| net.auengun.ansible.version | 10.7.0 |
| net.auengun.commit-and-tag-version.version | 12.6.0 |
| net.auengun.golang.version | 1.25.3 |
| net.auengun.grype.version | v0.103.0 |
| net.auengun.infisical.version | v0.41.90 |
| net.auengun.opentofu.version | v1.10.6 |
| net.auengun.poetry.version | 2.2.1 |
| net.auengun.reuse.version | 6.2.0 |
| net.auengun.step.version | v0.28.7 |
| net.auengun.syft.version | v1.37.0 |
| org.opencontainers.image.authors | https://github.com/catthehacker |
| org.opencontainers.image.created | 2025-10-29 13:03:50Z |
| 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.ref.name | ubuntu |
| org.opencontainers.image.revision | 38693faab2f43d672a5f4b25b576993621880b88 |
| org.opencontainers.image.source | https://github.com/catthehacker/catthehacker/docker_images |
| org.opencontainers.image.title | act-22.04-amd64 |
| org.opencontainers.image.url | https://github.com/catthehacker/catthehacker/docker_images/tree/38693faab2f43d672a5f4b25b576993621880b88/linux/ubuntu/act/ |
| org.opencontainers.image.vendor | catthehacker |
| org.opencontainers.image.version | 20251029 |
Details
2025-11-04 12:23:22 +00:00
Versions (5)
View all
Container
0
OCI / Docker
linux/amd64
https://github.com/catthehacker
1.1 GiB
latest
2025-11-04
6c8bec7b399a5d2faed2e0fbfb4387055cc86212
2025-11-04
act-latest
2025-11-04
36a778a9ef7c88191aa02042480b83261f868516
2025-10-31
9b2f90558252ee094407acef6bab4da23e5b9cc0
2025-10-23