bazarr/Dockerfile

15 lines
440 B
Text
Raw Normal View History

2017-11-29 10:16:15 +08:00
FROM lsiobase/alpine:3.6
2017-10-17 07:58:19 +08:00
2017-10-22 08:19:48 +08:00
VOLUME /tv
2017-11-30 02:11:52 +08:00
RUN apk add --no-cache git python2 python-dev py-pip py-pygit2 jpeg-dev && \
apk add --no-cache --virtual build-dependencies g++ libffi-dev zlib-dev && \
2017-11-29 10:16:15 +08: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 08:11:57 +08:00
2017-11-29 11:25:56 +08:00
VOLUME /app/data
EXPOSE 6767
CMD ["python", "/app/bazarr.py"]