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"]

5
requirements-build.txt Normal file
View File

@@ -0,0 +1,5 @@
certifi==2017.7.27.1
chardet==3.0.4
idna==2.5
requests==2.18.3
urllib3==1.22