Dockerfile update

pull/26/head
Louis Vézina 7 years ago
parent 4303388826
commit bd2d92a625

@ -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"]
Loading…
Cancel
Save