Skip to content

Commit

Permalink
Release 7.3.2 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Dec 14, 2022
1 parent edcac49 commit dfa9870
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 7.3.2 2022-12-14 <dave at tiredofit dot ca>

### Changed
- Fix PHP_BASE issue with modules not loading introduced with 7.3.0


## 7.3.1 2022-12-13 <dave at tiredofit dot ca>

### Changed
Expand Down
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ARG DISTRO=alpine
ARG DISTRO_VARIANT=edge
ARG DISTRO_VARIANT=3.17

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

ARG PHP_BASE

ENV PHP_BASE=${PHP_BASE:-"8.2"} \
ENV PHP_BASE=${PHP_BASE:-"8.1"} \
PHP_ENABLE_APCU=TRUE \
PHP_ENABLE_BCMATH=TRUE \
PHP_ENABLE_BZ2=TRUE \
Expand Down Expand Up @@ -41,8 +41,11 @@ ENV PHP_BASE=${PHP_BASE:-"8.2"} \
IMAGE_REPO_URL="https://github.com/tiredofit/docker-nginx-php-fpm/"

### Dependency Installation
RUN if [ "${PHP_BASE}" = "8.1" ] ; then export php_folder="81" ; else php_folder=${PHP_BASE:0:1} ; fi ; \
if [ "${PHP_BASE}" = "8.2" ] ; then export php_folder="82" ; else php_folder=${PHP_BASE:0:1} ; fi ; \
RUN case "${PHP_BASE}" in \
8.2 ) export php_folder="82" ;; \
8.1 ) export php_folder="81" ;; \
*) export php_folder=${PHP_BASE:0:1} ;; \
esac ; \
export PHP_8_2_RUN_DEPS=" \
mariadb-connector-c \
php82 \
Expand Down

0 comments on commit dfa9870

Please sign in to comment.