| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:8c609c85109d07bf47cf268a175b3be8bbe34fc0c41d15d99b090d099f4dc837 in / |
| CMD ["/bin/bash"] |
| ARG PHP_VERSION |
| ENV PHP_VERSION=${PHP_VERSION} DEBIAN_FRONTEND=noninteractive TZ=UTC |
| |1 PHP_VERSION=8.2 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends software-properties-common gnupg curl ca-certificates && curl -fsSL https://packages.sury.org/php/apt.gpg | gpg --dearmor -o /usr/share/keyrings/sury-php.gpg && echo "deb [signed-by=/usr/share/keyrings/sury-php.gpg] https://packages.sury.org/php $(lsb_release -sc) main" > /etc/apt/sources.list.d/sury-php.list && apt-get update && apt-get install -y --no-install-recommends cron nslcd gosu php${PHP_VERSION}-cli php${PHP_VERSION}-curl php${PHP_VERSION}-mysql php${PHP_VERSION}-pgsql php${PHP_VERSION}-zip php${PHP_VERSION}-mbstring php${PHP_VERSION}-xml && apt-get purge -y --auto-remove software-properties-common gnupg && rm -rf /var/lib/apt/lists/* |
| COPY file:3c7feb4ffa2a8819affd16a1bc13703307b57ffd9cdafe3e40982a07db064488 in /entrypoint.sh |
| |1 PHP_VERSION=8.2 /bin/sh -c chmod +x /entrypoint.sh |
| ENTRYPOINT ["/entrypoint.sh"] |
| CMD ["cron", "-f", "-l", "2"] |