mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-10 17:13:35 +08:00
19 lines
No EOL
462 B
Docker
19 lines
No EOL
462 B
Docker
FROM debian:buster
|
|
|
|
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
|
|
|
|
VOLUME /bazarr/data
|
|
|
|
# Install app dependencies
|
|
RUN pip install -r /bazarr/requirements.txt
|
|
|
|
CMD ["python", "/bazarr/bazarr.py"] |