From 4a4a0fac62ba4bf7c4700aa3f01044b857a46698 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Fri, 20 Oct 2017 09:04:51 -0400 Subject: [PATCH] Use absolute path --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4ca8413d5..57978c497 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM lsiobase/alpine.python EXPOSE 6767 -VOLUME /tv /bazarr/data # Update RUN apk add --update build-base python-dev py2-pip py-setuptools jpeg-dev zlib-dev git @@ -12,5 +11,6 @@ RUN git clone -b master --single-branch https://github.com/morpheus65535/bazarr. # Install app dependencies RUN pip install -r /bazarr/requirements.txt -WORKDIR /bazarr -CMD ["python", "bazarr.py"] \ No newline at end of file +VOLUME /tv /bazarr/data + +CMD ["python", "/bazarr/bazarr.py"] \ No newline at end of file