File tree Expand file tree Collapse file tree 3 files changed +9
-13
lines changed Expand file tree Collapse file tree 3 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -56,10 +56,9 @@ RUN apk add --no-cache --virtual .sys-deps \
56
56
sqlite-dev \
57
57
imap-dev \
58
58
postgresql-dev \
59
- lua-resty-core
60
-
61
- # Install PHP modules
62
- RUN docker-php-ext-configure gd \
59
+ lua-resty-core && \
60
+ # Install PHP modules
61
+ docker-php-ext-configure gd \
63
62
--enable-gd \
64
63
--with-freetype \
65
64
--with-jpeg && \
@@ -70,14 +69,10 @@ RUN docker-php-ext-configure gd \
70
69
pecl install -o -f redis && \
71
70
echo "extension=redis.so" > /usr/local/etc/php/conf.d/redis.ini && \
72
71
echo "zend_extension=xdebug" > /usr/local/etc/php/conf.d/xdebug.ini && \
73
- docker-php-source delete
74
- # mkdir -p /etc/nginx && \
75
- # mkdir -p /var/www/app && \
76
- # mkdir -p /run/nginx && \
77
-
78
-
79
- # Install composer and certbot
80
- RUN mkdir -p /var/log/supervisor && \
72
+ docker-php-source delete && \
73
+ mkdir -p /var/www/app && \
74
+ # Install composer and certbot
75
+ mkdir -p /var/log/supervisor && \
81
76
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \
82
77
php composer-setup.php --quiet --install-dir=/usr/bin --filename=composer && \
83
78
rm composer-setup.php &&\
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ If you have improvements or suggestions please open an issue or pull request on
10
10
### Versioning
11
11
| Docker Tag | Git Release | Nginx Version | PHP Version | Alpine Version |
12
12
| -----| -------| -----| --------| --------|
13
- | latest/3.0.2 | Master Branch | 1.22.1 | 8.2.3 | 3.17 |
13
+ | latest/3.1.0 | Master Branch | 1.22.1 | 8.2.3 | 3.17 |
14
14
15
15
For other tags please see: [ versioning] ( https://github.com/richarvey/nginx-php-fpm/blob/master/docs/versioning.md )
16
16
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ The latest tag will always follow the master branch in git. the other versions w
17
17
18
18
| Docker Tag | PHP Version | Nginx Version | Alpine Version | Container Scripts | Notes |
19
19
| -----| -------| -----| --------| --------| ----------|
20
+ | 3.1.0 | 8.2.3 | 1.22.1 | 3.17 | 0.3.17 | reduced image size |
20
21
| 3.0.2 | 8.2.3 | 1.22.1 | 3.17 | 0.3.17 | fixed gd2 and xsl errors |
21
22
| 3.0.1 | 8.2.3 | 1.22.1 | 3.17 | 0.3.17 | no cache typo fixed + TZ fixed in scripts |
22
23
| 3.0.0 | 8.2.3 | 1.22.1 | 3.17 | 0.3.16 | upgraded php to 8.2.3 switched to packaged nginx |
You can’t perform that action at this time.
0 commit comments