aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
blob: e9fb54972c410b3566bfe0a83cee31b0ba269e9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM lsiobase/alpine.python:3.7

# set python to use utf-8 rather than ascii.
ENV PYTHONIOENCODING="UTF-8"

VOLUME /tv
VOLUME /movies

RUN apk add --update git py-pip && \
    git clone https://github.com/morpheus65535/bazarr.git /bazarr

VOLUME /bazarr/data

EXPOSE 6767

COPY root/ /
CMD ["python", "/bazarr/bazarr.py"]