Skip to content

Commit 613b257

Browse files
committed
add php versions to update.sh for 8.3/8.4 and update template with new link
1 parent 91a83c6 commit 613b257

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

7/apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# from https://www.drupal.org/requirements/php#drupalversions
1+
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
22
FROM php:7.0-apache
33

44
# 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,4 +1,4 @@
1-
# from https://www.drupal.org/requirements/php#drupalversions
1+
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
22
FROM php:7.0-fpm-alpine
33

44
# install the PHP extensions we need

7/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# from https://www.drupal.org/requirements/php#drupalversions
1+
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
22
FROM php:7.0-fpm
33

44
# install the PHP extensions we need

8.3/fpm/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
1+
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
22
FROM php:7.1-fpm
33

44
# install the PHP extensions we need

Dockerfile-alpine.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# from https://www.drupal.org/requirements/php#drupalversions
1+
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
22
FROM php:%%PHP_VERSION%%-%%VARIANT%%
33

44
# install the PHP extensions we need

Dockerfile-debian.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# from https://www.drupal.org/requirements/php#drupalversions
1+
# from https://www.drupal.org/docs/8/system-requirements/drupal-8-php-requirements
22
FROM php:%%PHP_VERSION%%-%%VARIANT%%
33

44
# install the PHP extensions we need

update.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ versions=( "${versions[@]%/}" )
1212
defaultPhpVersion='7.2'
1313
declare -A phpVersions=(
1414
[7]='7.0'
15+
[8.3]='7.1'
16+
[8.4]='7.1'
1517
)
1618

1719
curl -fsSL 'https://www.drupal.org/node/3060/release' -o release

0 commit comments

Comments
 (0)