summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAshley Sommer <Ashley.Sommer@csiro.au>2021-07-07 16:47:43 +1000
committerAshley Sommer <Ashley.Sommer@csiro.au>2021-07-07 16:47:43 +1000
commit7e2f80e682723554e13072822ba25c086ce2509c (patch)
tree72dea4f66403293b151df2addec51fcbf7c1a68f /test
parentec0c7c18e2a5d3d8652cf676c273eb7d7b97a48e (diff)
parentf7313bf35455e3b3ede971214d5b67455596df30 (diff)
downloadrdflib-7e2f80e682723554e13072822ba25c086ce2509c.tar.gz
Merge remote-tracking branch 'origin/master' into json_ld_11
Diffstat (limited to 'test')
-rw-r--r--test/Dockerfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Dockerfile b/test/Dockerfile
new file mode 100644
index 00000000..462f55a2
--- /dev/null
+++ b/test/Dockerfile
@@ -0,0 +1,14 @@
+# Docker image for the rdflib test-runner.
+
+# Use the lowest supported Python version to run tests.
+FROM python:3.6
+
+COPY requirements.dev.txt .
+COPY requirements.txt .
+
+RUN pip install --no-cache -r requirements.dev.txt
+RUN pip install --no-cache -r requirements.txt
+
+RUN mkdir -p /rdflib
+VOLUME /rdflib
+WORKDIR /rdflib