Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/docker-ci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/php7.2
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2017-07-19 18:16:29 +0300
committerLukas Reschke <lukas@statuscode.ch>2017-07-19 18:16:29 +0300
commite4351e4f66515641ac1b503fd3c44d11ce90328e (patch)
treef4cffbcacc330f2f45bf161b6f1ff242c564ea09 /php7.2
parentedaa2fd52ace4a2758158efb6d3452e6a1921a63 (diff)
Use phpunit 5.7.21php7.2-3
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'php7.2')
-rw-r--r--php7.2/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/php7.2/Dockerfile b/php7.2/Dockerfile
index be4651a..5774c6c 100644
--- a/php7.2/Dockerfile
+++ b/php7.2/Dockerfile
@@ -13,9 +13,9 @@ RUN cd /tmp/ && wget https://github.com/nikic/php-ast/archive/master.zip && unzi
RUN cd /tmp/php-ast-master/ && phpize && ./configure && make && make install && rm -rf /tmp/php-ast-master/
RUN echo "extension=ast.so" >> /etc/php/7.2/cli/conf.d/20-ast.ini
RUN phpenmod zip intl gd xdebug
-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
+RUN curl -O -L https://phar.phpunit.de/phpunit-5.7.21.phar \
+ && chmod +x phpunit-5.7.21.phar \
+ && mv phpunit-5.7.21.phar /usr/local/bin/phpunit
RUN curl -O -L https://getcomposer.org/download/1.1.2/composer.phar \
&& chmod +x composer.phar \
&& mv composer.phar /usr/local/bin/composer