mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-26 17:47:20 +00:00
19 lines
No EOL
357 B
Text
19 lines
No EOL
357 B
Text
FROM lsiobase/alpine.python.armhf:3.7
|
|
|
|
# set python to use utf-8 rather than ascii.
|
|
ENV PYTHONIOENCODING="UTF-8"
|
|
|
|
ADD qemu-arm-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"] |