mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-25 09:12:38 +00:00
17 lines
No EOL
364 B
Docker
17 lines
No EOL
364 B
Docker
FROM lsiobase/alpine.python
|
|
|
|
EXPOSE 6767
|
|
VOLUME /tv
|
|
|
|
# Update
|
|
RUN apk add --update build-base python-dev py2-pip py-setuptools jpeg-dev zlib-dev git
|
|
|
|
ADD . /bazarr
|
|
#RUN git clone -b development --single-branch https://github.com/morpheus65535/bazarr.git
|
|
|
|
WORKDIR /bazarr
|
|
|
|
# Install app dependencies
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD ["python", "bazarr.py"] |