diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 880624f..6be4c70 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -12,13 +12,17 @@ jobs: needs: common strategy: ${{ fromJson(needs.common.outputs.strategy) }} name: ${{ matrix.name }} - runs-on: ubuntu-latest + runs-on: self-hosted steps: - uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - uses: actions/checkout@v3 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Build image uses: docker/build-push-action@v5 with: context: ${{ matrix.dir }} + platforms: ${{ matrix.arches }} tags: ${{ matrix.tags }} diff --git a/8.0/alpine3.16/cli/Dockerfile b/8.0/alpine3.16/cli/Dockerfile index 4f49818..8b6eab0 100644 --- a/8.0/alpine3.16/cli/Dockerfile +++ b/8.0/alpine3.16/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-cli-alpine3.16 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.0/alpine3.16/fpm/Dockerfile b/8.0/alpine3.16/fpm/Dockerfile index bfcdd14..7579709 100644 --- a/8.0/alpine3.16/fpm/Dockerfile +++ b/8.0/alpine3.16/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-fpm-alpine3.16 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.0/alpine3.16/zts/Dockerfile b/8.0/alpine3.16/zts/Dockerfile index 170a8ff..f117d96 100644 --- a/8.0/alpine3.16/zts/Dockerfile +++ b/8.0/alpine3.16/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-zts-alpine3.16 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.0/bullseye/apache/Dockerfile b/8.0/bullseye/apache/Dockerfile index 2e3c693..2ca9ade 100644 --- a/8.0/bullseye/apache/Dockerfile +++ b/8.0/bullseye/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-apache-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.0/bullseye/cli/Dockerfile b/8.0/bullseye/cli/Dockerfile index 45be1c8..2d63dc5 100644 --- a/8.0/bullseye/cli/Dockerfile +++ b/8.0/bullseye/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-cli-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.0/bullseye/fpm/Dockerfile b/8.0/bullseye/fpm/Dockerfile index 4da6734..3a61b02 100644 --- a/8.0/bullseye/fpm/Dockerfile +++ b/8.0/bullseye/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-fpm-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.0/bullseye/zts/Dockerfile b/8.0/bullseye/zts/Dockerfile index ea062bf..751f981 100644 --- a/8.0/bullseye/zts/Dockerfile +++ b/8.0/bullseye/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-zts-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.0/buster/apache/Dockerfile b/8.0/buster/apache/Dockerfile index f17fc3c..28f45c1 100644 --- a/8.0/buster/apache/Dockerfile +++ b/8.0/buster/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-apache-buster - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.0/buster/cli/Dockerfile b/8.0/buster/cli/Dockerfile index 20d493d..3405513 100644 --- a/8.0/buster/cli/Dockerfile +++ b/8.0/buster/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-cli-buster - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.0/buster/fpm/Dockerfile b/8.0/buster/fpm/Dockerfile index c60b06c..ffb716d 100644 --- a/8.0/buster/fpm/Dockerfile +++ b/8.0/buster/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-fpm-buster - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.0/buster/zts/Dockerfile b/8.0/buster/zts/Dockerfile index f3032d3..bc629bf 100644 --- a/8.0/buster/zts/Dockerfile +++ b/8.0/buster/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.0-zts-buster - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/alpine3.16/cli/Dockerfile b/8.1-rc/alpine3.16/cli/Dockerfile index 05e6e05..2fafd35 100644 --- a/8.1-rc/alpine3.16/cli/Dockerfile +++ b/8.1-rc/alpine3.16/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-cli-alpine3.16 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/alpine3.16/fpm/Dockerfile b/8.1-rc/alpine3.16/fpm/Dockerfile index aa8fcb3..e0648a4 100644 --- a/8.1-rc/alpine3.16/fpm/Dockerfile +++ b/8.1-rc/alpine3.16/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-fpm-alpine3.16 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/alpine3.16/zts/Dockerfile b/8.1-rc/alpine3.16/zts/Dockerfile index 0d41ca8..0ec7115 100644 --- a/8.1-rc/alpine3.16/zts/Dockerfile +++ b/8.1-rc/alpine3.16/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-zts-alpine3.16 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/alpine3.17/cli/Dockerfile b/8.1-rc/alpine3.17/cli/Dockerfile index 5c58906..3cce79a 100644 --- a/8.1-rc/alpine3.17/cli/Dockerfile +++ b/8.1-rc/alpine3.17/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-cli-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/alpine3.17/fpm/Dockerfile b/8.1-rc/alpine3.17/fpm/Dockerfile index f499115..432e182 100644 --- a/8.1-rc/alpine3.17/fpm/Dockerfile +++ b/8.1-rc/alpine3.17/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-fpm-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/alpine3.17/zts/Dockerfile b/8.1-rc/alpine3.17/zts/Dockerfile index 9c92eb9..5ffe123 100644 --- a/8.1-rc/alpine3.17/zts/Dockerfile +++ b/8.1-rc/alpine3.17/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-zts-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/alpine3.18/cli/Dockerfile b/8.1-rc/alpine3.18/cli/Dockerfile index 06869df..71a483f 100644 --- a/8.1-rc/alpine3.18/cli/Dockerfile +++ b/8.1-rc/alpine3.18/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-cli-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/alpine3.18/fpm/Dockerfile b/8.1-rc/alpine3.18/fpm/Dockerfile index 8649ef4..8b10f3a 100644 --- a/8.1-rc/alpine3.18/fpm/Dockerfile +++ b/8.1-rc/alpine3.18/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-fpm-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/alpine3.18/zts/Dockerfile b/8.1-rc/alpine3.18/zts/Dockerfile index 7e583c2..b9df2c2 100644 --- a/8.1-rc/alpine3.18/zts/Dockerfile +++ b/8.1-rc/alpine3.18/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-zts-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/bookworm/apache/Dockerfile b/8.1-rc/bookworm/apache/Dockerfile index 4616a9f..610301d 100644 --- a/8.1-rc/bookworm/apache/Dockerfile +++ b/8.1-rc/bookworm/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-apache-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/bookworm/cli/Dockerfile b/8.1-rc/bookworm/cli/Dockerfile index a62b2e3..0f707bd 100644 --- a/8.1-rc/bookworm/cli/Dockerfile +++ b/8.1-rc/bookworm/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-cli-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/bookworm/fpm/Dockerfile b/8.1-rc/bookworm/fpm/Dockerfile index a02c3bd..38e5072 100644 --- a/8.1-rc/bookworm/fpm/Dockerfile +++ b/8.1-rc/bookworm/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-fpm-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/bookworm/zts/Dockerfile b/8.1-rc/bookworm/zts/Dockerfile index 7a81780..c115071 100644 --- a/8.1-rc/bookworm/zts/Dockerfile +++ b/8.1-rc/bookworm/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-zts-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/bullseye/apache/Dockerfile b/8.1-rc/bullseye/apache/Dockerfile index dcc6dcc..687ed82 100644 --- a/8.1-rc/bullseye/apache/Dockerfile +++ b/8.1-rc/bullseye/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-apache-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/bullseye/cli/Dockerfile b/8.1-rc/bullseye/cli/Dockerfile index 9cda96f..91b8e92 100644 --- a/8.1-rc/bullseye/cli/Dockerfile +++ b/8.1-rc/bullseye/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-cli-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/bullseye/fpm/Dockerfile b/8.1-rc/bullseye/fpm/Dockerfile index bfa4f44..196bc6a 100644 --- a/8.1-rc/bullseye/fpm/Dockerfile +++ b/8.1-rc/bullseye/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-fpm-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1-rc/bullseye/zts/Dockerfile b/8.1-rc/bullseye/zts/Dockerfile index 1cff4b9..8cb9d63 100644 --- a/8.1-rc/bullseye/zts/Dockerfile +++ b/8.1-rc/bullseye/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-rc-zts-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/alpine3.16/cli/Dockerfile b/8.1/alpine3.16/cli/Dockerfile index 4815345..d88e854 100644 --- a/8.1/alpine3.16/cli/Dockerfile +++ b/8.1/alpine3.16/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-cli-alpine3.16 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/alpine3.16/fpm/Dockerfile b/8.1/alpine3.16/fpm/Dockerfile index 4ad06e0..8d21268 100644 --- a/8.1/alpine3.16/fpm/Dockerfile +++ b/8.1/alpine3.16/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-fpm-alpine3.16 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/alpine3.16/zts/Dockerfile b/8.1/alpine3.16/zts/Dockerfile index a1926d4..7f404fd 100644 --- a/8.1/alpine3.16/zts/Dockerfile +++ b/8.1/alpine3.16/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-zts-alpine3.16 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/alpine3.17/cli/Dockerfile b/8.1/alpine3.17/cli/Dockerfile index f56f1ef..b4f3308 100644 --- a/8.1/alpine3.17/cli/Dockerfile +++ b/8.1/alpine3.17/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-cli-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/alpine3.17/fpm/Dockerfile b/8.1/alpine3.17/fpm/Dockerfile index f17616d..ce5dee8 100644 --- a/8.1/alpine3.17/fpm/Dockerfile +++ b/8.1/alpine3.17/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-fpm-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/alpine3.17/zts/Dockerfile b/8.1/alpine3.17/zts/Dockerfile index 5978ec5..18c4cda 100644 --- a/8.1/alpine3.17/zts/Dockerfile +++ b/8.1/alpine3.17/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-zts-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/alpine3.18/cli/Dockerfile b/8.1/alpine3.18/cli/Dockerfile index 98c24ec..da3e0f9 100644 --- a/8.1/alpine3.18/cli/Dockerfile +++ b/8.1/alpine3.18/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-cli-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/alpine3.18/fpm/Dockerfile b/8.1/alpine3.18/fpm/Dockerfile index 9efd41d..f5b3ea9 100644 --- a/8.1/alpine3.18/fpm/Dockerfile +++ b/8.1/alpine3.18/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-fpm-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/alpine3.18/zts/Dockerfile b/8.1/alpine3.18/zts/Dockerfile index 3373f42..9b2f395 100644 --- a/8.1/alpine3.18/zts/Dockerfile +++ b/8.1/alpine3.18/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-zts-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/bookworm/apache/Dockerfile b/8.1/bookworm/apache/Dockerfile index 18f8733..a218048 100644 --- a/8.1/bookworm/apache/Dockerfile +++ b/8.1/bookworm/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-apache-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/bookworm/cli/Dockerfile b/8.1/bookworm/cli/Dockerfile index 5831f43..f42ce38 100644 --- a/8.1/bookworm/cli/Dockerfile +++ b/8.1/bookworm/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-cli-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/bookworm/fpm/Dockerfile b/8.1/bookworm/fpm/Dockerfile index cb96689..ef75365 100644 --- a/8.1/bookworm/fpm/Dockerfile +++ b/8.1/bookworm/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-fpm-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/bookworm/zts/Dockerfile b/8.1/bookworm/zts/Dockerfile index 88439c9..f025241 100644 --- a/8.1/bookworm/zts/Dockerfile +++ b/8.1/bookworm/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-zts-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/bullseye/apache/Dockerfile b/8.1/bullseye/apache/Dockerfile index 4c08e01..509a614 100644 --- a/8.1/bullseye/apache/Dockerfile +++ b/8.1/bullseye/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-apache-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/bullseye/cli/Dockerfile b/8.1/bullseye/cli/Dockerfile index 0b1a249..8c88027 100644 --- a/8.1/bullseye/cli/Dockerfile +++ b/8.1/bullseye/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-cli-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/bullseye/fpm/Dockerfile b/8.1/bullseye/fpm/Dockerfile index 42e6092..49c8290 100644 --- a/8.1/bullseye/fpm/Dockerfile +++ b/8.1/bullseye/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-fpm-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.1/bullseye/zts/Dockerfile b/8.1/bullseye/zts/Dockerfile index 8d985a1..06cc0b6 100644 --- a/8.1/bullseye/zts/Dockerfile +++ b/8.1/bullseye/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.1-zts-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/alpine3.17/cli/Dockerfile b/8.2-rc/alpine3.17/cli/Dockerfile index 03e01bc..e278c82 100644 --- a/8.2-rc/alpine3.17/cli/Dockerfile +++ b/8.2-rc/alpine3.17/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-cli-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/alpine3.17/fpm/Dockerfile b/8.2-rc/alpine3.17/fpm/Dockerfile index 000a75b..e1071fe 100644 --- a/8.2-rc/alpine3.17/fpm/Dockerfile +++ b/8.2-rc/alpine3.17/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-fpm-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/alpine3.17/zts/Dockerfile b/8.2-rc/alpine3.17/zts/Dockerfile index 8cfbe70..b619483 100644 --- a/8.2-rc/alpine3.17/zts/Dockerfile +++ b/8.2-rc/alpine3.17/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-zts-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/alpine3.18/cli/Dockerfile b/8.2-rc/alpine3.18/cli/Dockerfile index 16f7332..b516116 100644 --- a/8.2-rc/alpine3.18/cli/Dockerfile +++ b/8.2-rc/alpine3.18/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-cli-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/alpine3.18/fpm/Dockerfile b/8.2-rc/alpine3.18/fpm/Dockerfile index 6265536..c1f5547 100644 --- a/8.2-rc/alpine3.18/fpm/Dockerfile +++ b/8.2-rc/alpine3.18/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-fpm-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/alpine3.18/zts/Dockerfile b/8.2-rc/alpine3.18/zts/Dockerfile index 57c01ff..c5eed64 100644 --- a/8.2-rc/alpine3.18/zts/Dockerfile +++ b/8.2-rc/alpine3.18/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-zts-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/bookworm/apache/Dockerfile b/8.2-rc/bookworm/apache/Dockerfile index 50f14bc..a64c11b 100644 --- a/8.2-rc/bookworm/apache/Dockerfile +++ b/8.2-rc/bookworm/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-apache-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/bookworm/cli/Dockerfile b/8.2-rc/bookworm/cli/Dockerfile index ff15e67..1409873 100644 --- a/8.2-rc/bookworm/cli/Dockerfile +++ b/8.2-rc/bookworm/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-cli-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/bookworm/fpm/Dockerfile b/8.2-rc/bookworm/fpm/Dockerfile index e0434aa..6c06f9a 100644 --- a/8.2-rc/bookworm/fpm/Dockerfile +++ b/8.2-rc/bookworm/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-fpm-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/bookworm/zts/Dockerfile b/8.2-rc/bookworm/zts/Dockerfile index 936d8b0..2b57a63 100644 --- a/8.2-rc/bookworm/zts/Dockerfile +++ b/8.2-rc/bookworm/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-zts-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/bullseye/apache/Dockerfile b/8.2-rc/bullseye/apache/Dockerfile index df16443..9bd1a15 100644 --- a/8.2-rc/bullseye/apache/Dockerfile +++ b/8.2-rc/bullseye/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-apache-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/bullseye/cli/Dockerfile b/8.2-rc/bullseye/cli/Dockerfile index b6d4c7a..e9d03fc 100644 --- a/8.2-rc/bullseye/cli/Dockerfile +++ b/8.2-rc/bullseye/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-cli-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/bullseye/fpm/Dockerfile b/8.2-rc/bullseye/fpm/Dockerfile index 3116310..0ea4ae3 100644 --- a/8.2-rc/bullseye/fpm/Dockerfile +++ b/8.2-rc/bullseye/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-fpm-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2-rc/bullseye/zts/Dockerfile b/8.2-rc/bullseye/zts/Dockerfile index 2dcbdb2..6d6e56b 100644 --- a/8.2-rc/bullseye/zts/Dockerfile +++ b/8.2-rc/bullseye/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-rc-zts-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/alpine3.17/cli/Dockerfile b/8.2/alpine3.17/cli/Dockerfile index 1f64a65..4a14cd1 100644 --- a/8.2/alpine3.17/cli/Dockerfile +++ b/8.2/alpine3.17/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-cli-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/alpine3.17/fpm/Dockerfile b/8.2/alpine3.17/fpm/Dockerfile index 96bb28a..420e2e2 100644 --- a/8.2/alpine3.17/fpm/Dockerfile +++ b/8.2/alpine3.17/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-fpm-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/alpine3.17/zts/Dockerfile b/8.2/alpine3.17/zts/Dockerfile index a4fff47..0777966 100644 --- a/8.2/alpine3.17/zts/Dockerfile +++ b/8.2/alpine3.17/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-zts-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/alpine3.18/cli/Dockerfile b/8.2/alpine3.18/cli/Dockerfile index af46ada..a185ab2 100644 --- a/8.2/alpine3.18/cli/Dockerfile +++ b/8.2/alpine3.18/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-cli-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/alpine3.18/fpm/Dockerfile b/8.2/alpine3.18/fpm/Dockerfile index 5f530c3..0387da1 100644 --- a/8.2/alpine3.18/fpm/Dockerfile +++ b/8.2/alpine3.18/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-fpm-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/alpine3.18/zts/Dockerfile b/8.2/alpine3.18/zts/Dockerfile index a43b791..1609306 100644 --- a/8.2/alpine3.18/zts/Dockerfile +++ b/8.2/alpine3.18/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-zts-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/bookworm/apache/Dockerfile b/8.2/bookworm/apache/Dockerfile index 9241725..f818c33 100644 --- a/8.2/bookworm/apache/Dockerfile +++ b/8.2/bookworm/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-apache-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/bookworm/cli/Dockerfile b/8.2/bookworm/cli/Dockerfile index 920fad6..2267280 100644 --- a/8.2/bookworm/cli/Dockerfile +++ b/8.2/bookworm/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-cli-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/bookworm/fpm/Dockerfile b/8.2/bookworm/fpm/Dockerfile index fb81ac5..c4de351 100644 --- a/8.2/bookworm/fpm/Dockerfile +++ b/8.2/bookworm/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-fpm-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/bookworm/zts/Dockerfile b/8.2/bookworm/zts/Dockerfile index 28e9b18..3107b32 100644 --- a/8.2/bookworm/zts/Dockerfile +++ b/8.2/bookworm/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-zts-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/bullseye/apache/Dockerfile b/8.2/bullseye/apache/Dockerfile index 5e8dec2..6fe0027 100644 --- a/8.2/bullseye/apache/Dockerfile +++ b/8.2/bullseye/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-apache-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/bullseye/cli/Dockerfile b/8.2/bullseye/cli/Dockerfile index 63cb51f..0e1d6ec 100644 --- a/8.2/bullseye/cli/Dockerfile +++ b/8.2/bullseye/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-cli-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/bullseye/fpm/Dockerfile b/8.2/bullseye/fpm/Dockerfile index b1f8348..b36c9b4 100644 --- a/8.2/bullseye/fpm/Dockerfile +++ b/8.2/bullseye/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-fpm-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.2/bullseye/zts/Dockerfile b/8.2/bullseye/zts/Dockerfile index 23a6942..7e583be 100644 --- a/8.2/bullseye/zts/Dockerfile +++ b/8.2/bullseye/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.2-zts-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/alpine3.17/cli/Dockerfile b/8.3-rc/alpine3.17/cli/Dockerfile index 7aef05b..38483cb 100644 --- a/8.3-rc/alpine3.17/cli/Dockerfile +++ b/8.3-rc/alpine3.17/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-cli-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/alpine3.17/fpm/Dockerfile b/8.3-rc/alpine3.17/fpm/Dockerfile index 31ae9b5..d804df1 100644 --- a/8.3-rc/alpine3.17/fpm/Dockerfile +++ b/8.3-rc/alpine3.17/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-fpm-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/alpine3.17/zts/Dockerfile b/8.3-rc/alpine3.17/zts/Dockerfile index f4b57b4..250aa3f 100644 --- a/8.3-rc/alpine3.17/zts/Dockerfile +++ b/8.3-rc/alpine3.17/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-zts-alpine3.17 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/alpine3.18/cli/Dockerfile b/8.3-rc/alpine3.18/cli/Dockerfile index 92222da..c17c357 100644 --- a/8.3-rc/alpine3.18/cli/Dockerfile +++ b/8.3-rc/alpine3.18/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-cli-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/alpine3.18/fpm/Dockerfile b/8.3-rc/alpine3.18/fpm/Dockerfile index 55e1b30..6a7d2e4 100644 --- a/8.3-rc/alpine3.18/fpm/Dockerfile +++ b/8.3-rc/alpine3.18/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-fpm-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/alpine3.18/zts/Dockerfile b/8.3-rc/alpine3.18/zts/Dockerfile index eb9b9a7..dabd73e 100644 --- a/8.3-rc/alpine3.18/zts/Dockerfile +++ b/8.3-rc/alpine3.18/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-zts-alpine3.18 - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/bookworm/apache/Dockerfile b/8.3-rc/bookworm/apache/Dockerfile index 2bc099e..b22ca26 100644 --- a/8.3-rc/bookworm/apache/Dockerfile +++ b/8.3-rc/bookworm/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-apache-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/bookworm/cli/Dockerfile b/8.3-rc/bookworm/cli/Dockerfile index 212b471..f403306 100644 --- a/8.3-rc/bookworm/cli/Dockerfile +++ b/8.3-rc/bookworm/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-cli-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/bookworm/fpm/Dockerfile b/8.3-rc/bookworm/fpm/Dockerfile index dde0a98..199ff9b 100644 --- a/8.3-rc/bookworm/fpm/Dockerfile +++ b/8.3-rc/bookworm/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-fpm-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/bookworm/zts/Dockerfile b/8.3-rc/bookworm/zts/Dockerfile index f70becb..9d5cb83 100644 --- a/8.3-rc/bookworm/zts/Dockerfile +++ b/8.3-rc/bookworm/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-zts-bookworm - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/bullseye/apache/Dockerfile b/8.3-rc/bullseye/apache/Dockerfile index 6854052..489b9e1 100644 --- a/8.3-rc/bullseye/apache/Dockerfile +++ b/8.3-rc/bullseye/apache/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-apache-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/bullseye/cli/Dockerfile b/8.3-rc/bullseye/cli/Dockerfile index a23babe..5ef35a9 100644 --- a/8.3-rc/bullseye/cli/Dockerfile +++ b/8.3-rc/bullseye/cli/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-cli-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/bullseye/fpm/Dockerfile b/8.3-rc/bullseye/fpm/Dockerfile index ffc2f81..395677e 100644 --- a/8.3-rc/bullseye/fpm/Dockerfile +++ b/8.3-rc/bullseye/fpm/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-fpm-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/8.3-rc/bullseye/zts/Dockerfile b/8.3-rc/bullseye/zts/Dockerfile index 6daface..ef03148 100644 --- a/8.3-rc/bullseye/zts/Dockerfile +++ b/8.3-rc/bullseye/zts/Dockerfile @@ -5,13 +5,3 @@ # FROM php:8.3-rc-zts-bullseye - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress diff --git a/Dockerfile-linux.template b/Dockerfile-linux.template index 5621bde..e4b59df 100644 --- a/Dockerfile-linux.template +++ b/Dockerfile-linux.template @@ -1,11 +1 @@ FROM {{ env.from }} - -# Install PHP extensions which are recommended for Drupal, -# `mlocati/php-extension-installer` provides an easy way to install extensions. -# https://github.com/mlocati/docker-php-extension-installer/blob/master/README.md -COPY --from=mlocati/php-extension-installer /usr/bin/install-php-extensions /usr/local/bin/ -RUN install-php-extensions \ - apcu \ - gd \ - opcache \ - uploadprogress