aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/blueimp/jquery-file-upload/test/Dockerfile
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2019-12-04 10:25:11 +0000
committerMario <mario@mariovavti.com>2019-12-04 10:25:11 +0000
commitbde429cff649237984903a252ba1a718e6d74f53 (patch)
treeb2b2570159cfb37689e6ce3b96c3b1b988d676cc /vendor/blueimp/jquery-file-upload/test/Dockerfile
parentcc9f41df5f83bcab435d6fb941b5a8f5b1457037 (diff)
parent4c8d33d1eb2a804aa70a7bc677d6c73d0d94816b (diff)
downloadvolse-hubzilla-4.6.tar.gz
volse-hubzilla-4.6.tar.bz2
volse-hubzilla-4.6.zip
Merge branch '4.6RC'4.6
Diffstat (limited to 'vendor/blueimp/jquery-file-upload/test/Dockerfile')
-rw-r--r--vendor/blueimp/jquery-file-upload/test/Dockerfile26
1 files changed, 26 insertions, 0 deletions
diff --git a/vendor/blueimp/jquery-file-upload/test/Dockerfile b/vendor/blueimp/jquery-file-upload/test/Dockerfile
new file mode 100644
index 000000000..a80dccc8d
--- /dev/null
+++ b/vendor/blueimp/jquery-file-upload/test/Dockerfile
@@ -0,0 +1,26 @@
+FROM blueimp/chromedriver
+
+USER root
+
+RUN export DEBIAN_FRONTEND=noninteractive \
+ && apt-get update \
+ && apt-get install --no-install-recommends --no-install-suggests -y \
+ nodejs \
+ npm \
+ # Remove obsolete files:
+ && npm install -g \
+ npm@latest \
+ mocha-chrome \
+ && apt-get clean \
+ && rm -rf \
+ /tmp/* \
+ /usr/share/doc/* \
+ /var/cache/* \
+ /var/lib/apt/lists/* \
+ /var/tmp/*
+
+USER webdriver
+
+WORKDIR /var/www/html
+
+ENTRYPOINT ["mocha-chrome"]