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 255fabc commit 702f5d5Copy full SHA for 702f5d5
1 file changed
docker/php/Dockerfile
@@ -1,10 +1,11 @@
1
-FROM php:7.0-fpm
+FROM php:7.2-fpm
2
RUN apt-get update && apt-get install -y \
3
libfreetype6-dev \
4
libjpeg62-turbo-dev \
5
- libpng12-dev \
+ libpng-dev \
6
+ && docker-php-ext-install -j$(nproc) iconv \
7
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
- && docker-php-ext-install -j$(nproc) gd \
8
+ && docker-php-ext-install -j$(nproc) gd
9
&& docker-php-ext-install -j$(nproc) pdo pdo_mysql
10
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
11
0 commit comments