1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-24 06:59:52 +01:00

webrecore Docker: update Docker file to latest pywb, python, starting to use versioning!

This commit is contained in:
Ilya Kreymer 2016-09-16 18:43:07 -07:00
parent 2fb1df34c9
commit 5c499753f8

View File

@ -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 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 RUN pip install git+https://github.com/t0m/pyamf.git@python3
@ -13,7 +16,7 @@ WORKDIR /webrecore/
RUN pip install -e ./ RUN pip install -e ./
RUN useradd -ms /bin/bash apprun RUN useradd -ms /bin/bash -u 1000 apprun
USER apprun USER apprun