bazarr/Dockerfile

17 lines
539 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
2017-11-29 02:16:15 +00:00
VOLUME /config
2017-10-22 00:19:48 +00:00
2017-11-29 02:16:15 +00:00
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
2017-10-20 00:11:57 +00:00
2017-11-29 02:16:15 +00:00
COPY root /
2017-10-22 03:21:40 +00:00
2017-11-29 02:16:15 +00:00
LABEL MAINTAINER="peter.varsanyi@gwelican.eu"
LABEL org.label-schema.vcs-ref=$VCS_REF org.label-schema.build-date=$BUILD_DATE
2017-10-19 21:03:35 +00:00
2017-11-29 02:16:15 +00:00
EXPOSE 6767