1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-26 01:27:07 +00:00
bazarr/Dockerfile
Louis Vézina 301f1616a3 Test
2017-11-28 21:27:37 -05:00

12 lines
No EOL
399 B
Docker

FROM lsiobase/alpine:3.6
VOLUME /tv
VOLUME /config
RUN apk add --update git python2 py-pip py-pygit2 jpeg-dev && \
apk add --update --virtual build-dependencies g++ python-dev libffi-dev zlib-dev && \
git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /app && \
pip install -r /app/requirements.txt && \
apk del --purge build-dependencies
EXPOSE 6767