From 498f87fb54811be3b0c41718ac8dd71f671a3a71 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Tue, 26 Jul 2016 19:42:59 -0400 Subject: [PATCH] add Dockerfile to git! --- Dockerfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..e7333e0f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +FROM python:3.5.1 + +RUN pip install gevent uwsgi bottle urllib3 youtube-dl + +RUN pip install git+https://github.com/ikreymer/pywb.git@develop#egg=pywb-0.31.5 + +RUN pip install git+https://github.com/t0m/pyamf.git@python3 + +RUN pip install boto + +ADD . /webrecore/ +WORKDIR /webrecore/ + +RUN pip install -e ./ + +RUN useradd -ms /bin/bash apprun + +USER apprun + +