1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-25 01:02:19 +00:00
bazarr/Dockerfile

14 lines
210 B
Text
Raw Normal View History

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