aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2021-02-27 07:05:22 +0000
committersickcodes <[email protected]>2021-02-27 07:05:43 +0000
commita9e8821a067dc003ea47eb27acb07b7c4c93264f (patch)
tree2328bdb8966d9351189e8eb54d53b37b13d1cba5 /Dockerfile
parentMerge pull request #155 from sickcodes/custom-identity (diff)
downloaddocker-osx-a9e8821a067dc003ea47eb27acb07b7c4c93264f.tar.xz
docker-osx-a9e8821a067dc003ea47eb27acb07b7c4c93264f.zip
Update helm chart to include link back to OG project. Dissolve testing branch references in favor of master.
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index f9570ab..01ff913 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -184,8 +184,10 @@ RUN if [[ "${LINUX}" == true ]]; then \
&& bsdtar -C / -xvf "${patched_glibc}" || echo "Everything is fine." \
; fi
-# temporary branch, remove in final PR
-RUN git clone --branch custom-identity https://github.com/sickcodes/Docker-OSX.git
+# optional --build-arg to change branches for testing
+ARG BRANCH=master
+ARG REPO='https://github.com/sickcodes/Docker-OSX.git'
+RUN git clone --branch "${BRANCH}" "${REPO}"
RUN touch Launch.sh \
&& chmod +x ./Launch.sh \