You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/Dockerfile

25 lines
660 B

FROM lsiobase/alpine.python
EXPOSE 6767
VOLUME /bazarr/data /tv
# Update
RUN apk add --update build-base python-dev py2-pip py-setuptools jpeg-dev zlib-dev git
7 years ago
WORKDIR /bazarr
# Get application source from Github
7 years ago
RUN git init
RUN git remote add origin https://github.com/morpheus65535/bazarr.git
RUN git fetch
RUN git reset origin/master # this is required if files in the non-empty directory are in the repo
7 years ago
RUN git checkout -t master
7 years ago
#RUN git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /bazarr
7 years ago
RUN ls /
RUN ls /bazarr
# Install app dependencies
RUN pip install -r /bazarr/requirements.txt
CMD ["python", "bazarr.py"]