Skip to content

Commit 403b759

Browse files
authored
v7.1.0 (#274)
Major updates * Using latest base images * Adding PHP 8.5 and making it the default Minor updates * Updating to PHP 8.3.28 and 8.4.15
1 parent e84da41 commit 403b759

File tree

18 files changed

+64
-16
lines changed

18 files changed

+64
-16
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
php: [ "7.4", "8.0", "8.1", "8.2", "8.3", "8.4" ]
17+
php: [ "7.4", "8.0", "8.1", "8.2", "8.3", "8.4", "8.5" ]
1818
runs-on: ubuntu-latest
1919
steps:
2020
-

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php: [ "7.4", "8.0", "8.1", "8.2", "8.3", "8.4" ]
13+
php: [ "7.4", "8.0", "8.1", "8.2", "8.3", "8.4", "8.5" ]
1414
runs-on: ubuntu-latest
1515
steps:
1616
-

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.0.0
1+
7.1.0

VERSION_MINOR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.0
1+
7.1

generate-dockerfiles.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ set -euo pipefail
44

55
docker pull bfren/alpine
66

7-
BASE_VERSION="8.0.1"
7+
BASE_VERSION="8.1.0"
88
echo "Base: ${BASE_VERSION}"
99

10-
PHP_VERSIONS="7.4 8.0 8.1 8.2 8.3 8.4"
10+
PHP_VERSIONS="7.4 8.0 8.1 8.2 8.3 8.4 8.5"
1111
for V in ${PHP_VERSIONS} ; do
1212

1313
echo "WordPress for PHP ${V}"

php7.4/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/bfren/nginx-php:php7.4.33-8.0.1
1+
FROM quay.io/bfren/nginx-php:php7.4.33-8.1.0
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-wordpress"
44

php8.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/bfren/nginx-php:php8.0.30-8.0.1
1+
FROM quay.io/bfren/nginx-php:php8.0.30-8.1.0
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-wordpress"
44

php8.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/bfren/nginx-php:php8.1.32-8.0.1
1+
FROM quay.io/bfren/nginx-php:php8.1.32-8.1.0
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-wordpress"
44

php8.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/bfren/nginx-php:php8.2.29-8.0.1
1+
FROM quay.io/bfren/nginx-php:php8.2.29-8.1.0
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-wordpress"
44

php8.3/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/bfren/nginx-php:php8.3.27-8.0.1
1+
FROM quay.io/bfren/nginx-php:php8.3.28-8.1.0
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-wordpress"
44

0 commit comments

Comments
 (0)