2016-09-16 18:43:07 -07:00
|
|
|
#webrecorder/webrecore 1.0
|
|
|
|
|
|
|
|
FROM python:3.5.2
|
2016-07-26 19:42:59 -04:00
|
|
|
|
|
|
|
RUN pip install gevent uwsgi bottle urllib3 youtube-dl
|
|
|
|
|
2016-10-24 19:05:45 +00:00
|
|
|
RUN pip install git+https://github.com/ikreymer/pywb.git@master#egg=pywb-0.33.0
|
2016-10-02 11:29:51 -07:00
|
|
|
#RUN pip install pywb
|
2016-07-26 19:42:59 -04:00
|
|
|
|
|
|
|
RUN pip install git+https://github.com/t0m/pyamf.git@python3
|
|
|
|
|
2016-10-22 00:13:41 -07:00
|
|
|
RUN pip install boto webassets
|
2016-07-26 19:42:59 -04:00
|
|
|
|
|
|
|
ADD . /webrecore/
|
|
|
|
WORKDIR /webrecore/
|
|
|
|
|
|
|
|
RUN pip install -e ./
|
|
|
|
|
2016-09-16 18:43:07 -07:00
|
|
|
RUN useradd -ms /bin/bash -u 1000 apprun
|
2016-07-26 19:42:59 -04:00
|
|
|
|
|
|
|
USER apprun
|
|
|
|
|
|
|
|
|