ARG RELEASE |
ARG LAUNCHPAD_BUILD_ARCH |
LABEL org.opencontainers.image.ref.name=ubuntu |
LABEL org.opencontainers.image.version=24.04 |
ADD file:6df775300d76441aa33f31b22c1afce8dfe35c8ffbc14ef27c27009235b12a95 in / |
CMD ["/bin/bash"] |
RUN /bin/sh -c apt-get update && apt-get install -y php8.3 php8.3-cli php8.3-gd php8.3-mysql php8.3-fpm php8.3-curl php8.3-intl php8.3-imagick php8.3-xml php8.3-zip php8.3-bz2 php8.3-mbstring php8.3-amqp php8.3-apcu php8.3-bcmath php8.3-opcache php8.3-psr php8.3-readline php8.3-uuid php8.3-yaml nodejs build-essential curl wget git zip unzip # buildkit |
RUN /bin/sh -c php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'.PHP_EOL; } else { echo 'Installer corrupt'.PHP_EOL; unlink('composer-setup.php'); exit(1); }" && php composer-setup.php && php -r "unlink('composer-setup.php');" && mv composer.phar /usr/local/bin/composer # buildkit |