stratbase

runner-php82 (latest)

Published 2026-04-27 22:05:52 +01:00 by harry

Installation

docker pull git.bayliss.cloud/stratbase/runner-php82:latest
sha256:2d5fe0aea2083569fd336b96afb02a7ca8ba8cee8cdf29e06a7c68f19a9eb72a

About this package

Official docker images used by act_runner to run workflows.

Image Layers

ARG RELEASE
ARG LAUNCHPAD_BUILD_ARCH
LABEL org.opencontainers.image.ref.name=ubuntu
LABEL org.opencontainers.image.version=24.04
ADD file:3f78aa860931e0853077f09eb31eddbeeef8a9dd70977305b4876aa176770721 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 IMAGE_CREATED=2026-04-01T00:02:34Z
ARG IMAGE_VERSION=v26.04.01
ARG IMAGE_REVISION=4f79577a9ffa027ed71dcf8d569d96b7ba061f32
LABEL org.opencontainers.image.created=2026-04-01T00:02:34Z org.opencontainers.image.authors=Gitea org.opencontainers.image.url=https://gitea.com/gitea/runner-images org.opencontainers.image.documentation=https://gitea.com/gitea/runner-images/src/branch/main/README.md org.opencontainers.image.source=https://gitea.com/gitea/runner-images org.opencontainers.image.version=v26.04.01 org.opencontainers.image.revision=4f79577a9ffa027ed71dcf8d569d96b7ba061f32 org.opencontainers.image.vendor=Gitea org.opencontainers.image.licenses=MIT org.opencontainers.image.title=Official Gitea Actions runner images org.opencontainers.image.description=Official docker images used by act_runner to run workflows.
ENV DEBIAN_FRONTEND=noninteractive
ENV BUN_INSTALL=/root/.bun
ENV PATH=/root/.bun/bin:/opt/acttoolcache/node/24.14.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
RUN /bin/bash --login -e -o pipefail -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl git gnupg lsb-release postgresql-client software-properties-common unzip && add-apt-repository ppa:ondrej/php -y && apt-get update && apt-get install -y --no-install-recommends php8.2 php8.2-bcmath php8.2-bz2 php8.2-cli php8.2-curl php8.2-gd php8.2-intl php8.2-mbstring php8.2-pgsql php8.2-soap php8.2-xml php8.2-zip && curl -fsSL https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer && curl -fsSL https://bun.sh/install | bash && ln -sf /root/.bun/bin/bun /usr/local/bin/bun && ln -sf /root/.bun/bin/bunx /usr/local/bin/bunx && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/bash --login -e -o pipefail -c php -v && php -m && composer --version && bun --version && pg_isready --version # buildkit

Labels

Key Value
io.buildah.version 1.35.0
org.opencontainers.image.authors Gitea
org.opencontainers.image.created 2026-04-01T00:02:34Z
org.opencontainers.image.description Official docker images used by act_runner to run workflows.
org.opencontainers.image.documentation https://gitea.com/gitea/runner-images/src/branch/main/README.md
org.opencontainers.image.licenses MIT
org.opencontainers.image.ref.name ubuntu
org.opencontainers.image.revision 4f79577a9ffa027ed71dcf8d569d96b7ba061f32
org.opencontainers.image.source https://gitea.com/gitea/runner-images
org.opencontainers.image.title Official Gitea Actions runner images
org.opencontainers.image.url https://gitea.com/gitea/runner-images
org.opencontainers.image.vendor Gitea
org.opencontainers.image.version v26.04.01
Details
Container
2026-04-27 22:05:52 +01:00
33
OCI / Docker
linux/amd64
Gitea
MIT
600 MiB
Versions (1) View all
latest 2026-04-27