Skip to content

Commit 2a200fd

Browse files
authored
Merge pull request #40 from PatchRanger/#39-fix_installation_error
Fix #39
2 parents 125b96e + 9c75266 commit 2a200fd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

conf/php7console/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN apt-get install -y libbz2-dev
2323
RUN docker-php-ext-install bz2
2424

2525
# gd
26-
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev
26+
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng-dev
2727
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
2828
RUN docker-php-ext-install gd
2929

@@ -75,7 +75,7 @@ RUN apt-get install -y \
7575
libfreetype6-dev \
7676
libjpeg62-turbo-dev \
7777
libmcrypt-dev \
78-
libpng12-dev \
78+
libpng-dev \
7979
msmtp \
8080
imagemagick \
8181
libssl-dev \

conf/php7xdebug/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN apt-get install -y libbz2-dev
2020
RUN docker-php-ext-install bz2
2121

2222
# gd
23-
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev
23+
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng-dev
2424
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/
2525
RUN docker-php-ext-install gd
2626

@@ -74,7 +74,7 @@ RUN apt-get install -y \
7474
libfreetype6-dev \
7575
libjpeg62-turbo-dev \
7676
libmcrypt-dev \
77-
libpng12-dev \
77+
libpng-dev \
7878
msmtp \
7979
imagemagick \
8080
libssl-dev \

0 commit comments

Comments
 (0)