#315 fixed docker compose error and switched to PHP 7.2.0

This commit is contained in:
Dominik Liebler
2017-12-27 08:48:20 +01:00
parent 7cb5aa618b
commit 2141c4916c
3 changed files with 24 additions and 10 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM php:7.2.0-cli
WORKDIR /opt/php
RUN apt-get update \
&& apt-get install -y zlib1g-dev wget git-core \
&& docker-php-ext-install zip
ADD . /opt/php
CMD [ "./docker/test_runner.sh" ]