Skip to content

Commit c356034

Browse files
authored
Merge pull request #166 from infosiftr/php7.3
Update Drupal 7 to PHP 7.3
2 parents 6a99936 + 1ec9ec0 commit c356034

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

7/apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
2-
FROM php:7.2-apache-stretch
2+
FROM php:7.3-apache-stretch
33
# 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)
44

55
# install the PHP extensions we need

7/fpm-alpine/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
2-
FROM php:7.2-fpm-alpine
2+
FROM php:7.3-fpm-alpine
33

44
# install the PHP extensions we need
55
# postgresql-dev is needed for https://bugs.alpinelinux.org/issues/3642

7/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
2-
FROM php:7.2-fpm-stretch
2+
FROM php:7.3-fpm-stretch
33
# 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)
44

55
# install the PHP extensions we need

update.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ if [ ${#versions[@]} -eq 0 ]; then
99
fi
1010
versions=( "${versions[@]%/}" )
1111

12+
# https://www.drupal.org/docs/8/system-requirements/php-requirements#php_required
1213
defaultPhpVersion='7.3'
1314
declare -A phpVersions=(
14-
[7]='7.2'
15+
# https://www.drupal.org/docs/7/system-requirements/php-requirements#php_required
16+
#[7]='7.2'
1517
)
1618

1719
travisEnv=

0 commit comments

Comments
 (0)