From 5c499753f8b7de962211ed35abfa1f161b2f97c0 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Fri, 16 Sep 2016 18:43:07 -0700 Subject: [PATCH] webrecore Docker: update Docker file to latest pywb, python, starting to use versioning! --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e7333e0f..583665a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,11 @@ -FROM python:3.5.1 +#webrecorder/webrecore 1.0 + +FROM python:3.5.2 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/ikreymer/pywb.git@develop#egg=pywb-0.32.0 +RUN pip install pywb RUN pip install git+https://github.com/t0m/pyamf.git@python3 @@ -13,7 +16,7 @@ WORKDIR /webrecore/ RUN pip install -e ./ -RUN useradd -ms /bin/bash apprun +RUN useradd -ms /bin/bash -u 1000 apprun USER apprun