You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/Dockerfile.alpine

15 lines
436 B

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"]