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 8598ae8 commit a533670Copy full SHA for a533670
7.1/jessie/fpm/mssql/Dockerfile
@@ -32,3 +32,11 @@ RUN apt-get install -y curl libmcrypt-dev openssh-client zlib1g-dev git \
32
&& echo "xdebug.remote_port=9000" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
33
&& echo "xdebug.remote_handler=dbgp" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini \
34
&& echo "xdebug.remote_connect_back=0" >> /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
35
+
36
+# Install GD2
37
+RUN apt-get update && apt-get install -y \
38
+ libfreetype6-dev \
39
+ libjpeg62-turbo-dev \
40
+ libpng-dev \
41
+ && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
42
+ && docker-php-ext-install gd
0 commit comments