1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-03-06 03:19:22 +00:00
bazarr/Dockerfile

18 lines
531 B
Text
Raw Normal View History

FROM debian:buster
2017-10-16 19:58:19 -04:00
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
EXPOSE 6767
2017-10-21 20:19:48 -04:00
VOLUME /tv
2017-10-19 20:11:57 -04:00
RUN apt-get update && \
apt-get install -y build-essential python-dev python-pip python-setuptools libjpeg-dev zlib1g-dev git libgit2-dev libffi-dev && \
git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /bazarr && \
git config --global user.name "Bazarr" && git config --global user.email "bazarr@fake.email" && \
pip install -r /bazarr/requirements.txt
2017-11-28 22:25:56 -05:00
VOLUME /bazarr/data
2017-11-28 22:25:56 -05:00
CMD ["python", "/bazarr/bazarr.py"]