summaryrefslogtreecommitdiff
path: root/test/Dockerfile
blob: 3c5bd1a270b37e0ab847fa643843537f243ee203 (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.7

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