From dc562709e66ce67dc4e8b516a9c7d34c2acc548a Mon Sep 17 00:00:00 2001 From: morpheus65535 <5130500+morpheus65535@users.noreply.github.com> Date: Thu, 31 May 2018 13:10:38 -0400 Subject: [PATCH] Fix for the switch branch problem --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cd620495e..e50b6e824 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ VOLUME /tv RUN apk add --update git py-pip jpeg-dev && \ apk add --update --virtual build-dependencies build-base python-dev libffi-dev zlib-dev && \ - git clone -b master --single-branch https://github.com/morpheus65535/bazarr.git /bazarr && \ + git clone https://github.com/morpheus65535/bazarr.git /bazarr && \ pip install -r /bazarr/requirements.txt && \ apk del --purge build-dependencies @@ -15,4 +15,4 @@ VOLUME /bazarr/data EXPOSE 6767 -CMD ["python", "/bazarr/bazarr.py"] \ No newline at end of file +CMD ["python", "/bazarr/bazarr.py"]