Skip to content

Php56 #20

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

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ ADD container-files/config/install* /config/
RUN \
rpm --rebuilddb && yum update -y && \
`# Install yum-utils (provides yum-config-manager) + some basic web-related tools...` \
yum install -y yum-utils wget patch mysql tar bzip2 unzip openssh-clients rsync && \
yum install -y yum-utils wget patch mysql tar bzip2 unzip openssh-clients postfix rsync && \

`# Install PHP 5.6` \
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm && \
yum-config-manager -q --enable remi && \
yum-config-manager -q --enable remi-php56 && \
yum install -y php-fpm php-bcmath php-cli php-gd php-intl php-mbstring \
php-pecl-imagick php-mcrypt php-mysql php-opcache php-pdo && \
php-pecl-imagick php-mcrypt php-mysql php-opcache php-pdo php-xml && \
yum install -y --disablerepo=epel php-pecl-redis php-pecl-yaml && \

`# Install libs required to build some gem/npm packages (e.g. PhantomJS requires zlib-devel, libpng-devel)` \
Expand Down