From bd2d92a625c5ea66cd215b37337c0cfcf3c1c138 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Mon, 16 Oct 2017 19:58:19 -0400 Subject: [PATCH] Dockerfile update --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2645cb9ac..708fa0427 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file +CMD ["python", "/bazarr/bazarr.py"] \ No newline at end of file