We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e7bf18 commit 77ca4cfCopy full SHA for 77ca4cf
Dockerfile
@@ -5,11 +5,9 @@ RUN apt-get update && \
5
apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng-dev libpq-dev libzip-dev unzip && \
6
apt-get clean && \
7
a2enmod rewrite && \
8
- service apache2 restart
9
-
10
-# Install php extensions
11
-RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && \
12
- docker-php-ext-install bcmath gd mysqli pgsql zip
+ service apache2 restart && \
+ docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ && \
+ docker-php-ext-install bcmath gd mysqli pdo pdo_mysql pgsql zip
13
14
ENV FS_VERSION 2020.51
15
0 commit comments