PHP 5.6 CI

This commit is contained in:
Philipp Holzer 2018-10-20 11:50:24 +02:00
parent 591a87c5f0
commit 24a3bd227a
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
1 changed files with 16 additions and 0 deletions

16
php5.6/Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM debian:jessie
# install the PHP extensions we need
# see https://friendi.ca/resources/requirements/
RUN set -ex; \
apt-get update; \
apt-get install -y php5-gd git curl \
php5-cli php5-curl php5-mcrypt php5-mysql wget make \
php5-redis php5-memcached php5-memcache php5-json php5-mcrypt \
; \
rm -rf /var/lib/apt/lists/*;
RUN php5enmod curl pdo pdo_mysql gd opcache json mcrypt
RUN curl -O -L https://phar.phpunit.de/phpunit-5.5.4.phar; \
chmod +x phpunit-5.5.4.phar; \
mv phpunit-5.5.4.phar /usr/local/bin/phpunit;