1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-24 08:43:01 +00:00
bazarr/Dockerfile
2017-10-20 09:04:51 -04:00

16 lines
No EOL
402 B
Docker

FROM lsiobase/alpine.python
EXPOSE 6767
# 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 master --single-branch https://github.com/morpheus65535/bazarr.git /bazarr
# Install app dependencies
RUN pip install -r /bazarr/requirements.txt
VOLUME /tv /bazarr/data
CMD ["python", "/bazarr/bazarr.py"]