File tree 3 files changed +14
-22
lines changed
3 files changed +14
-22
lines changed Original file line number Diff line number Diff line change 1
- FROM php:7.4 -fpm-alpine3.13
1
+ FROM php:8.0 -fpm-alpine3.13
2
2
3
3
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
4
+ ADD ./custom_params.ini /usr/local/etc/php/conf.d/docker-php-x-01-custom-params.ini
4
5
5
6
RUN apk update
6
7
@@ -29,32 +30,19 @@ RUN apk add --update libzip-dev libmcrypt-dev libpng-dev libjpeg-turbo-dev libxm
29
30
RUN apk add --update --virtual build-dependencies build-base gcc wget autoconf
30
31
31
32
RUN docker-php-ext-install \
32
- phar \
33
33
bcmath \
34
+ bz2 \
34
35
calendar \
35
- mbstring \
36
36
exif \
37
- ftp \
38
- zip \
39
- sysvsem \
40
- sysvshm \
41
- sysvmsg \
42
- shmop \
43
- sockets \
44
- bz2 \
45
- curl \
46
- simplexml \
47
- xml \
48
37
opcache \
49
- tokenizer \
50
- ctype \
51
- session \
52
- fileinfo \
53
- iconv \
54
- json \
55
- posix \
56
38
pdo_mysql \
57
- pdo_pgsql
39
+ pdo_pgsql \
40
+ shmop \
41
+ sockets \
42
+ sysvmsg \
43
+ sysvsem \
44
+ sysvshm \
45
+ zip
58
46
59
47
RUN set -xe \
60
48
&& pecl install imagick \
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ effort to acknowledge your contributions.
8
8
| Version | Supported |
9
9
| ------- | ------------------ |
10
10
| 1+ | :heavy_check_mark : |
11
+ | 2+ | :heavy_check_mark : |
11
12
12
13
## Reporting a Vulnerability
13
14
Original file line number Diff line number Diff line change
1
+ # OPcache
2
+ opcache.jit_buffer_size =100M
3
+ opcache.jit =1235
You can’t perform that action at this time.
0 commit comments