1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-25 01:02:19 +00:00
bazarr/Dockerfile

18 lines
373 B
Text
Raw Normal View History

2017-10-18 18:54:24 +00:00
FROM lsiobase/alpine.python
2017-10-16 23:27:19 +00:00
2017-10-16 23:58:19 +00:00
EXPOSE 6767
2017-10-18 18:54:24 +00:00
VOLUME /tv
2017-10-16 23:58:19 +00:00
2017-10-16 23:27:19 +00:00
# Update
2017-10-18 18:54:24 +00:00
RUN apk add --update build-base python-dev py2-pip py-setuptools jpeg-dev zlib-dev git
ADD . /bazarr
2017-10-19 11:10:52 +00:00
# Install app dependencies
RUN pip install -r /bazarr/requirements.txt
2017-10-18 18:54:24 +00:00
#RUN git clone -b development --single-branch https://github.com/morpheus65535/bazarr.git
WORKDIR /bazarr
2017-10-16 23:27:19 +00:00
2017-10-18 18:54:24 +00:00
CMD ["python", "bazarr.py"]