Skip to content

Commit b05d762

Browse files
committed
Pin Debian variants to stretch for now
The plan is to switch to buster once docker-library/php#865 is resolved in a clean way (either in the PHP image or in PHP itself).
1 parent 34fc799 commit b05d762

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

7/apache/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
2-
FROM php:7.2-apache
2+
FROM php:7.2-apache-stretch
3+
# TODO switch to buster once https://github.com/docker-library/php/issues/865 is resolved in a clean way (either in the PHP image or in PHP itself)
34

45
# install the PHP extensions we need
56
RUN set -eux; \

7/fpm/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
2-
FROM php:7.2-fpm
2+
FROM php:7.2-fpm-stretch
3+
# TODO switch to buster once https://github.com/docker-library/php/issues/865 is resolved in a clean way (either in the PHP image or in PHP itself)
34

45
# install the PHP extensions we need
56
RUN set -eux; \

8.6/apache/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
2-
FROM php:7.3-apache
2+
FROM php:7.3-apache-stretch
3+
# TODO switch to buster once https://github.com/docker-library/php/issues/865 is resolved in a clean way (either in the PHP image or in PHP itself)
34

45
# install the PHP extensions we need
56
RUN set -eux; \

8.6/fpm/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
2-
FROM php:7.3-fpm
2+
FROM php:7.3-fpm-stretch
3+
# TODO switch to buster once https://github.com/docker-library/php/issues/865 is resolved in a clean way (either in the PHP image or in PHP itself)
34

45
# install the PHP extensions we need
56
RUN set -eux; \

8.7/apache/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
2-
FROM php:7.3-apache
2+
FROM php:7.3-apache-stretch
3+
# TODO switch to buster once https://github.com/docker-library/php/issues/865 is resolved in a clean way (either in the PHP image or in PHP itself)
34

45
# install the PHP extensions we need
56
RUN set -eux; \

8.7/fpm/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
2-
FROM php:7.3-fpm
2+
FROM php:7.3-fpm-stretch
3+
# TODO switch to buster once https://github.com/docker-library/php/issues/865 is resolved in a clean way (either in the PHP image or in PHP itself)
34

45
# install the PHP extensions we need
56
RUN set -eux; \

Dockerfile-debian.template

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
2-
FROM php:%%PHP_VERSION%%-%%VARIANT%%
2+
FROM php:%%PHP_VERSION%%-%%VARIANT%%-stretch
3+
# TODO switch to buster once https://github.com/docker-library/php/issues/865 is resolved in a clean way (either in the PHP image or in PHP itself)
34

45
# install the PHP extensions we need
56
RUN set -eux; \

0 commit comments

Comments
 (0)