1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-22 07:42:32 +00:00

Dockerfile update

This commit is contained in:
Louis Vézina 2017-10-16 19:58:19 -04:00
parent 4303388826
commit bd2d92a625

View file

@ -1,10 +1,14 @@
FROM alpine:latest
EXPOSE 6767
VOLUME /bazarr
WORKDIR /bazarr
# Update
RUN apk add --update python py-pip
# Install app dependencies
RUN pip install -r requirements.txt
EXPOSE 6767
CMD ["python", "/src/bazarr.py"]
CMD ["python", "/bazarr/bazarr.py"]