mirror of https://github.com/morpheus65535/bazarr
15 lines
436 B
Docker
15 lines
436 B
Docker
|
FROM lsiobase/alpine:3.6
|
||
|
|
||
|
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 && \
|
||
|
git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /app && \
|
||
|
pip install -r /app/requirements.txt && \
|
||
|
apk del --purge build-dependencies
|
||
|
|
||
|
VOLUME /app/data
|
||
|
|
||
|
EXPOSE 6767
|
||
|
|
||
|
CMD ["python", "/app/bazarr.py"]
|