bazarr/Dockerfile

18 lines
322 B
Docker
Raw Normal View History

2018-01-23 23:49:52 +08:00
FROM lsiobase/alpine.python:3.7
2017-10-17 07:58:19 +08:00
2018-01-23 23:49:52 +08:00
# set python to use utf-8 rather than ascii.
ENV PYTHONIOENCODING="UTF-8"
VOLUME /tv
2018-05-31 01:07:37 +08:00
VOLUME /movies
2017-10-20 08:11:57 +08:00
RUN apk add --update git py-pip && \
git clone https://github.com/morpheus65535/bazarr.git /bazarr
2017-11-29 11:25:56 +08:00
VOLUME /bazarr/data
2017-11-29 11:25:56 +08:00
EXPOSE 6767
2018-07-02 20:45:34 +08:00
COPY root/ /
CMD ["python", "/bazarr/bazarr.py"]