1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-25 01:02:19 +00:00
bazarr/Dockerfile
Louis Vézina dcaa2ce0c8 Test
2017-10-19 17:20:45 -04:00

20 lines
No EOL
430 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 master --single-branch https://github.com/morpheus65535/bazarr.git /bazarr
RUN ls /
RUN ls /bazarr
# Install app dependencies
RUN pip install -r /bazarr/requirements.txt
WORKDIR /bazarr
CMD ["python", "bazarr.py"]