Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker php update to 5.6.27 #186

Merged
merged 2 commits into from Dec 10, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions docker/php/Dockerfile
@@ -1,4 +1,4 @@
FROM php:5.6.28-fpm-alpine
FROM php:5.6.27-fpm-alpine
RUN apk upgrade --update && apk add \
coreutils \
freetype-dev \
Expand All @@ -20,7 +20,8 @@ RUN cd ~ && \
./configure && \
make && \
make install
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ && docker-php-ext-install -j5 mysql gd ldap soap zip
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \
&& docker-php-ext-install -j5 mysql gd ldap soap zip
ADD scripts/install-composer.sh /opt/install-composer.sh
RUN dos2unix /opt/install-composer.sh && \
chmod +x /opt/install-composer.sh && \
Expand Down