Skip to content

Commit

Permalink
fix invalid dockerfiles for alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Höchtl committed Apr 14, 2020
1 parent 87b70d2 commit 3237824
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker/php-official/7.1-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ RUN set -x \
&& make install \
&& libtool --finish /usr/local/lib \
&& cd .. \
&& rm -rf libiconv-1.14
&& rm -rf libiconv-1.14 \
# Install extensions
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ \
&& docker-php-ext-configure ldap \
Expand Down
2 changes: 1 addition & 1 deletion docker/php-official/7.2-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ RUN set -x \
&& make install \
&& libtool --finish /usr/local/lib \
&& cd .. \
&& rm -rf libiconv-1.14
&& rm -rf libiconv-1.14 \
# Install extensions
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ \
&& docker-php-ext-configure ldap \
Expand Down
2 changes: 1 addition & 1 deletion docker/php-official/7.3-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ RUN set -x \
&& make install \
&& libtool --finish /usr/local/lib \
&& cd .. \
&& rm -rf libiconv-1.14
&& rm -rf libiconv-1.14 \
# Install extensions
&& docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-webp-dir=/usr/include/ \
&& docker-php-ext-configure ldap \
Expand Down
2 changes: 1 addition & 1 deletion docker/php-official/7.4-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ RUN set -x \
&& make install \
&& libtool --finish /usr/local/lib \
&& cd .. \
&& rm -rf libiconv-1.14
&& rm -rf libiconv-1.14 \
# Install extensions
&& docker-php-ext-configure gd --with-jpeg --with-freetype --with-webp \
&& docker-php-ext-configure ldap \
Expand Down
2 changes: 1 addition & 1 deletion template/Dockerfile/images/php.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
&& make install \
&& libtool --finish /usr/local/lib \
&& cd .. \
&& rm -rf libiconv-1.14
&& rm -rf libiconv-1.14 \
# Install extensions
{%- if version == '7.4' %}
&& docker-php-ext-configure gd --with-jpeg --with-freetype --with-webp \
Expand Down

0 comments on commit 3237824

Please sign in to comment.