File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ ENV NGINX_SERVER_TYPE ${NGINX_SERVER_TYPE:-laravel}
48
48
# Install additional tools and PHP extensions
49
49
RUN apt-get update && apt-get install -y --no-install-recommends \
50
50
git sqlite3 apache2-utils htop nano gettext-base lsb-release wget gnupg nginx supervisor \
51
- libpq-dev libjpeg62-turbo-dev libpng-dev libzip-dev libicu-dev libfreetype6-dev \
51
+ libpq-dev libjpeg62-turbo-dev libpng-dev libzip-dev libicu-dev libfreetype6-dev libgmp-dev \
52
52
&& curl https://repo.mysql.com/mysql-apt-config_0.8.22-1_all.deb --output mysql-apt-config.deb \
53
53
&& DEBIAN_FRONTEND=noninteractive dpkg -i mysql-apt-config.deb \
54
54
&& echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
@@ -60,7 +60,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
60
60
&& mkdir -p $HOME/.ssh && chmod 700 $HOME/.ssh && echo "Host *\n\t StrictHostKeyChecking no\n\n " > $HOME/.ssh/config \
61
61
&& docker-php-ext-configure gd --with-jpeg --with-freetype \
62
62
&& docker-php-ext-configure intl \
63
- && docker-php-ext-install bcmath pcntl exif opcache pdo_mysql pdo_pgsql zip gd intl sockets \
63
+ && docker-php-ext-install bcmath pcntl exif opcache pdo_mysql pdo_pgsql zip gd intl sockets gmp \
64
64
&& yes '' | pecl install redis-5.3.7 \
65
65
&& docker-php-ext-enable redis \
66
66
&& apt-get -y autoremove \
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ fileinfo
42
42
filter
43
43
ftp
44
44
gd
45
+ gmp
45
46
hash
46
47
iconv
47
48
intl
80
81
81
82
## Supported PHP Versions
82
83
83
- - 7.4 (use ` adiachenko/php-nginx:7.4 ` )
84
84
- 8.0 (use ` adiachenko/php-nginx:8.0 ` )
85
85
- 8.1 (use ` adiachenko/php-nginx:8.1 ` )
86
86
You can’t perform that action at this time.
0 commit comments