Skip to content

Commit

Permalink
Release 7.2.1 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Nov 23, 2022
1 parent 0de8c3e commit d368753
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ jobs:
php8_1_alpine:
env:
PHP_BASE: "8.1"
DISTRIB: "3.16"
DISTRIB: "3.17"
OS: "alpine"
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ jobs:
php8_1_alpine:
env:
PHP_BASE: "8.1"
DISTRIB: "3.16"
DISTRIB: "3.17"
OS: "alpine"
runs-on: ubuntu-latest
steps:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 7.2.1 2022-11-23 <dave at tiredofit dot ca>

### Changed
- Switch PHP 8.1 base to Alpine 3.17


## 7.2.0 2022-10-13 <dave at tiredofit dot ca>

### Added
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ARG ALPINE_VERSION=3.16
ARG ALPINE_VERSION=3.17

FROM docker.io/tiredofit/nginx:alpine-${ALPINE_VERSION}
LABEL maintainer="Dave Conroy (github.com/tiredofit)"

ARG PHP_BASE

ENV PHP_BASE=${PHP_BASE:-"8.0"} \
ENV PHP_BASE=${PHP_BASE:-"8.1"} \
PHP_ENABLE_APCU=TRUE \
PHP_ENABLE_BCMATH=TRUE \
PHP_ENABLE_BZ2=TRUE \
Expand Down Expand Up @@ -702,7 +702,7 @@ RUN if [ "${PHP_BASE}" = "8.1" ] ; then export php_folder="81" ; else php_folde
git \
gnupg \
gpgme \
libressl \
openssl \
mariadb-client \
postgresql-client \
$(printenv PHP_$(echo ${PHP_BASE} | sed 's|\.|_|g')_RUN_DEPS) \
Expand Down Expand Up @@ -744,5 +744,5 @@ RUN if [ "${PHP_BASE}" = "8.1" ] ; then export php_folder="81" ; else php_folde
EXPOSE 9000

### Files Addition
ADD install /
COPY install /

2 changes: 1 addition & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,4 @@ RUN export PHP_7_3_RUN_DEPS=" \
EXPOSE 9000

### Files Addition
ADD install /
COPY install /
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ The following image tags are available along with their tagged release based on
| PHP version | Alpine Base | Tag | Debian Base | Tag |
| ----------- | ----------- | -------------- | ----------- | ------------- |
| latest | edge | `:alpine-edge` | | |
| 8.1.x | 3.16 | `:alpine-8.1` | Buster | `:debian-8.1` |
| 8.1.x | 3.17 | `:alpine-8.1` | Buster | `:debian-8.1` |
| 8.0.x | 3.16 | `:alpine-8.0` | Buster | `:debian-8.0` |
| 7.4.x | 3.15 | `:alpine-7.4` | Buster | `:debian-7.3` |
| 7.3.x | 3.12 | `:alpine-7.3` | Buster | `:debian-7.3` |
Expand Down

0 comments on commit d368753

Please sign in to comment.