Skip to content

Commit dfa9870

Browse files
committed
Release 7.3.2 - See CHANGELOG.md
1 parent edcac49 commit dfa9870

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.3.2 2022-12-14 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Fix PHP_BASE issue with modules not loading introduced with 7.3.0
5+
6+
17
## 7.3.1 2022-12-13 <dave at tiredofit dot ca>
28

39
### Changed

Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
ARG DISTRO=alpine
2-
ARG DISTRO_VARIANT=edge
2+
ARG DISTRO_VARIANT=3.17
33

44
FROM docker.io/tiredofit/nginx:${DISTRO}-${DISTRO_VARIANT}
55
LABEL maintainer="Dave Conroy (dave at tiredofit dot ca)"
66

77
ARG PHP_BASE
88

9-
ENV PHP_BASE=${PHP_BASE:-"8.2"} \
9+
ENV PHP_BASE=${PHP_BASE:-"8.1"} \
1010
PHP_ENABLE_APCU=TRUE \
1111
PHP_ENABLE_BCMATH=TRUE \
1212
PHP_ENABLE_BZ2=TRUE \
@@ -41,8 +41,11 @@ ENV PHP_BASE=${PHP_BASE:-"8.2"} \
4141
IMAGE_REPO_URL="https://github.com/tiredofit/docker-nginx-php-fpm/"
4242

4343
### Dependency Installation
44-
RUN if [ "${PHP_BASE}" = "8.1" ] ; then export php_folder="81" ; else php_folder=${PHP_BASE:0:1} ; fi ; \
45-
if [ "${PHP_BASE}" = "8.2" ] ; then export php_folder="82" ; else php_folder=${PHP_BASE:0:1} ; fi ; \
44+
RUN case "${PHP_BASE}" in \
45+
8.2 ) export php_folder="82" ;; \
46+
8.1 ) export php_folder="81" ;; \
47+
*) export php_folder=${PHP_BASE:0:1} ;; \
48+
esac ; \
4649
export PHP_8_2_RUN_DEPS=" \
4750
mariadb-connector-c \
4851
php82 \

0 commit comments

Comments
 (0)