bazarr/Dockerfile

15 lines
436 B
Docker
Raw Normal View History

2017-11-29 02:16:15 +00:00
FROM lsiobase/alpine:3.6
2017-10-16 23:58:19 +00:00
2017-10-22 00:19:48 +00:00
VOLUME /tv
RUN apk add --update git python2 py-pip py-pygit2 jpeg-dev && \
apk add --update --virtual build-dependencies g++ python-dev libffi-dev zlib-dev && \
2017-11-29 02:16:15 +00:00
git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /app && \
pip install -r /app/requirements.txt && \
apk del --purge build-dependencies
2017-10-20 00:11:57 +00:00
2017-11-29 03:25:56 +00:00
VOLUME /app/data
EXPOSE 6767
CMD ["python", "/app/bazarr.py"]