summaryrefslogtreecommitdiff
path: root/test/Dockerfile
blob: 462f55a2b1072eeaa1ac3d2a685bfe34389334c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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