Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Add missing backslash otherwise image won't build
  • Loading branch information
fkoessler committed Oct 24, 2016
1 parent 39bc789 commit 6fe902d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -3,7 +3,7 @@ FROM php:5.6-apache
RUN apt-get update && apt-get install -y libpng12-dev libjpeg-dev libldap2-dev \
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-configure gd --with-png-dir=/usr --with-jpeg-dir=/usr \
&& docker-php-ext-install gd
&& docker-php-ext-install gd \
&& docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \
&& docker-php-ext-install ldap \
&& docker-php-ext-install mysqli \
Expand Down

0 comments on commit 6fe902d

Please sign in to comment.