File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
7
## 7.3.1 2022-12-13 <dave at tiredofit dot ca >
2
8
3
9
### Changed
Original file line number Diff line number Diff line change 1
1
ARG DISTRO=alpine
2
- ARG DISTRO_VARIANT=edge
2
+ ARG DISTRO_VARIANT=3.17
3
3
4
4
FROM docker.io/tiredofit/nginx:${DISTRO}-${DISTRO_VARIANT}
5
5
LABEL maintainer="Dave Conroy (dave at tiredofit dot ca)"
6
6
7
7
ARG PHP_BASE
8
8
9
- ENV PHP_BASE=${PHP_BASE:-"8.2 " } \
9
+ ENV PHP_BASE=${PHP_BASE:-"8.1 " } \
10
10
PHP_ENABLE_APCU=TRUE \
11
11
PHP_ENABLE_BCMATH=TRUE \
12
12
PHP_ENABLE_BZ2=TRUE \
@@ -41,8 +41,11 @@ ENV PHP_BASE=${PHP_BASE:-"8.2"} \
41
41
IMAGE_REPO_URL="https://github.com/tiredofit/docker-nginx-php-fpm/"
42
42
43
43
# ## 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 ; \
46
49
export PHP_8_2_RUN_DEPS=" \
47
50
mariadb-connector-c \
48
51
php82 \
You can’t perform that action at this time.
0 commit comments