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.arm64

19 lines
361 B

FROM lsiobase/alpine.python.arm64:3.7
# set python to use utf-8 rather than ascii.
ENV PYTHONIOENCODING="UTF-8"
ADD qemu-aarch64-static /usr/bin
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"]