Add Dockerfile and repeatable build requirements

This commit is contained in:
Andrew Cutler
2017-08-03 20:41:27 +10:00
parent 518158169f
commit 0b22d91af9
2 changed files with 14 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:2.7
ADD requirements-build.txt /
RUN pip install -r /requirements-build.txt
ADD registry.py /
ENTRYPOINT ["/registry.py"]