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

25 lines
660 B

FROM debian:buster
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
EXPOSE 6767
VOLUME /tv
# Update
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
# Get application source from Github
RUN git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /bazarr
RUN git config --global user.name "Bazarr" && git config --global user.email "bazarr@fake.email"
VOLUME /bazarr/data
# Install app dependencies
RUN pip install -r /bazarr/requirements.txt
CMD ["python", "/bazarr/bazarr.py"]