Skip to content

Commit 77ca4cf

Browse files
committed
Fixed wrong GD configuration.
1 parent 9e7bf18 commit 77ca4cf

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@ RUN apt-get update && \
55
apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng-dev libpq-dev libzip-dev unzip && \
66
apt-get clean && \
77
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
8+
service apache2 restart && \
9+
docker-php-ext-configure gd --with-freetype=/usr/include/ --with-jpeg=/usr/include/ && \
10+
docker-php-ext-install bcmath gd mysqli pdo pdo_mysql pgsql zip
1311

1412
ENV FS_VERSION 2020.51
1513

0 commit comments

Comments
 (0)