bazarr/Dockerfile

25 lines
660 B
Docker
Raw Normal View History

2017-11-14 22:38:34 +08:00
FROM debian:buster
2017-10-17 07:27:19 +08:00
2017-11-29 08:27:01 +08:00
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
2017-10-17 07:58:19 +08:00
EXPOSE 6767
2017-10-22 08:19:48 +08:00
VOLUME /tv
2017-10-17 07:27:19 +08:00
# Update
2017-11-14 22:38:34 +08:00
RUN apt-get update
RUN apt-get install -y build-essential python-dev python-pip python-setuptools libjpeg-dev zlib1g-dev git libgit2-dev libffi-dev
2017-10-19 02:54:24 +08:00
2017-10-20 05:03:35 +08:00
# Get application source from Github
RUN git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /bazarr
2017-11-27 10:44:52 +08:00
RUN git config --global user.name "Bazarr" && git config --global user.email "bazarr@fake.email"
2017-10-20 08:11:57 +08:00
2017-10-22 11:21:40 +08:00
VOLUME /bazarr/data
2017-10-20 05:03:35 +08:00
# Install app dependencies
2017-10-20 05:11:09 +08:00
RUN pip install -r /bazarr/requirements.txt
2017-10-20 05:03:35 +08:00
2017-10-20 21:04:51 +08:00
CMD ["python", "/bazarr/bazarr.py"]