mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-11 18:06:24 +08:00
17 lines
No EOL
410 B
Docker
17 lines
No EOL
410 B
Docker
FROM lsiobase/alpine.python
|
|
|
|
EXPOSE 6767
|
|
VOLUME /bazarr /tv
|
|
|
|
# Update
|
|
RUN apk add --update build-base python-dev py2-pip py-setuptools jpeg-dev zlib-dev git
|
|
|
|
# Get application source from Github
|
|
RUN git clone -b development --single-branch https://github.com/morpheus65535/bazarr.git /bazarr
|
|
|
|
WORKDIR /bazarr
|
|
|
|
# Install app dependencies
|
|
RUN pip install -r /bazarr/requirements.txt
|
|
|
|
CMD ["python", "bazarr.py"] |