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
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2020-03-18 19:56:23 +0300
committerArthur Schiwon <blizzz@arthur-schiwon.de>2020-03-18 20:04:27 +0300
commit812fe4090a738d820b1241044deffd1f0ab0b02a (patch)
tree169eef63b66c681d102870c5527513db27c28837
parent8d7434bbec63546716c7695b49cecadcf8a78bc2 (diff)
add ci test image for PHP 7.2integration-php7.2-1
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r--integration-php7.2/Dockerfile9
1 files changed, 9 insertions, 0 deletions
diff --git a/integration-php7.2/Dockerfile b/integration-php7.2/Dockerfile
new file mode 100644
index 0000000..76d6e4d
--- /dev/null
+++ b/integration-php7.2/Dockerfile
@@ -0,0 +1,9 @@
+FROM nextcloudci/php7.2:php7.2-13
+
+RUN composer global require hirak/prestissimo
+
+RUN mkdir /tmp/server && \
+ cd /tmp/server && git clone --recursive https://github.com/nextcloud/server.git && \
+ cd /tmp/server/server/build/integration && composer install && \
+ cd /tmp/server/server/tests/acceptance && composer install && \
+ rm -rf /tmp/server