bazarr/Dockerfile

14 lines
210 B
Text
Raw Normal View History

2017-10-17 07:27:19 +08:00
FROM alpine:latest
2017-10-17 07:58:19 +08:00
EXPOSE 6767
VOLUME /bazarr
WORKDIR /bazarr
2017-10-17 07:27:19 +08:00
# Update
RUN apk add --update python py-pip
# Install app dependencies
RUN pip install -r requirements.txt
2017-10-17 07:58:19 +08:00
CMD ["python", "/bazarr/bazarr.py"]