From 29b9d55ebf8c0e51a14f03083fdde7ac7c8b906c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Thu, 19 Oct 2017 20:11:57 -0400 Subject: [PATCH] Test --- Dockerfile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index a4d2a12cb..fd2d3394d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM lsiobase/alpine.python EXPOSE 6767 -VOLUME /bazarr/data /tv +VOLUME /tv # Update RUN apk add --update build-base python-dev py2-pip py-setuptools jpeg-dev zlib-dev git @@ -9,12 +9,9 @@ RUN apk add --update build-base python-dev py2-pip py-setuptools jpeg-dev zlib-d WORKDIR /bazarr # Get application source from Github -RUN git init -RUN git remote add origin https://github.com/morpheus65535/bazarr.git -RUN git fetch -RUN git reset origin/master # this is required if files in the non-empty directory are in the repo -RUN git checkout -t master -#RUN git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /bazarr +RUN git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /bazarr + +VOLUME /bazarr/data RUN ls / RUN ls /bazarr