Skip to content

Commit

Permalink
v5.1.18 (#249)
Browse files Browse the repository at this point in the history
Minor updates
* Adding .empty overlay

Build updates
* Using specific PHP image versions
  • Loading branch information
bfren authored Jun 16, 2024
1 parent cd50f96 commit 73f2183
Show file tree
Hide file tree
Showing 23 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Read PHP version - revision
uses: bfren/read-file@v2
with:
file: ./php${{ matrix.php }}/overlay/tmp/PHP_REVISION
file: ./php${{ matrix.php }}/overlay/PHP_REVISION
id: php_revision
-
name: Read FreeScout minor version
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.esh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/nginx-php:php<%= ${PHP_MINOR} %>-<%= ${BASE_VERSION} %>
FROM bfren/nginx-php:php<%= ${PHP_REVISION} %>-<%= ${BASE_VERSION} %>

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

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.17
5.1.18
6 changes: 4 additions & 2 deletions generate-dockerfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,23 @@ set -euo pipefail

docker pull bfren/alpine

BASE_VERSION="7.2.8"
BASE_VERSION="7.2.9"
echo "Base: ${BASE_VERSION}"

PHP_VERSIONS="7.4 8.0 8.1 8.2 8.3"
for V in ${PHP_VERSIONS} ; do

echo "FreeScout for PHP ${V}"
PHP_REVISION=`cat php${V}/PHP_REVISION`

DOCKERFILE=$(docker run \
-v ${PWD}:/ws \
-e BF_DEBUG=0 \
bfren/alpine esh \
"/ws/Dockerfile.esh" \
BASE_VERSION=${BASE_VERSION} \
PHP_MINOR=${V}
PHP_MINOR=${V} \
PHP_REVISION=${PHP_REVISION}
)

echo "${DOCKERFILE}" > ./php${V}/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion php7.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/nginx-php:php7.4-7.2.8
FROM bfren/nginx-php:php7.4.33-7.2.9

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

Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion php7.4/overlay/tmp/PHP_BUILD

This file was deleted.

2 changes: 1 addition & 1 deletion php8.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/nginx-php:php8.0-7.2.8
FROM bfren/nginx-php:php8.0.30-7.2.9

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

Expand Down
File renamed without changes.
Empty file added php8.0/overlay/.empty
Empty file.
1 change: 0 additions & 1 deletion php8.0/overlay/tmp/PHP_BUILD

This file was deleted.

2 changes: 1 addition & 1 deletion php8.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/nginx-php:php8.1-7.2.8
FROM bfren/nginx-php:php8.1.29-7.2.9

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

Expand Down
File renamed without changes.
Empty file added php8.1/overlay/.empty
Empty file.
1 change: 0 additions & 1 deletion php8.1/overlay/tmp/PHP_BUILD

This file was deleted.

2 changes: 1 addition & 1 deletion php8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/nginx-php:php8.2-7.2.8
FROM bfren/nginx-php:php8.2.20-7.2.9

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

Expand Down
File renamed without changes.
Empty file added php8.2/overlay/.empty
Empty file.
1 change: 0 additions & 1 deletion php8.2/overlay/tmp/PHP_BUILD

This file was deleted.

2 changes: 1 addition & 1 deletion php8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/nginx-php:php8.3-7.2.8
FROM bfren/nginx-php:php8.3.8-7.2.9

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

Expand Down
File renamed without changes.
Empty file added php8.3/overlay/.empty
Empty file.
1 change: 0 additions & 1 deletion php8.3/overlay/tmp/PHP_BUILD

This file was deleted.

0 comments on commit 73f2183

Please sign in to comment.