summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/andreskrey/readability.php/docker/php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-26 17:35:58 +0300
committerAndrew Dolgov <[email protected]>2021-02-26 17:35:58 +0300
commitcf1ede0ba8c687d9bfadf1c372546657968f1dd8 (patch)
tree3394cbf3d1cd60d4e1e42f8ef0aa88c4eef368b9 /plugins/af_readability/vendor/andreskrey/readability.php/docker/php
parent1baf8c521785ab4dc8f474fdd772280737c7e254 (diff)
pull latest readability-php via composer
Diffstat (limited to 'plugins/af_readability/vendor/andreskrey/readability.php/docker/php')
-rw-r--r--plugins/af_readability/vendor/andreskrey/readability.php/docker/php/Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/af_readability/vendor/andreskrey/readability.php/docker/php/Dockerfile b/plugins/af_readability/vendor/andreskrey/readability.php/docker/php/Dockerfile
new file mode 100644
index 000000000..8971d1f1b
--- /dev/null
+++ b/plugins/af_readability/vendor/andreskrey/readability.php/docker/php/Dockerfile
@@ -0,0 +1,8 @@
+ARG PHP_VERSION
+ARG LIBXML_VERSION
+FROM andreskrey/php-${PHP_VERSION}:libxml-${LIBXML_VERSION}
+
+RUN pecl install xdebug && docker-php-ext-enable xdebug
+
+# Required by coveralls
+RUN apt-get install git -y