diff options
| author | sickcodes <[email protected]> | 2021-02-27 07:07:52 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-27 07:07:52 +0000 |
| commit | 8fffd79f1688b450fd75a8a072d546222c360acd (patch) | |
| tree | 2328bdb8966d9351189e8eb54d53b37b13d1cba5 /Dockerfile | |
| parent | Merge pull request #155 from sickcodes/custom-identity (diff) | |
| parent | Update helm chart to include link back to OG project. Dissolve testing branch... (diff) | |
| download | docker-osx-8fffd79f1688b450fd75a8a072d546222c360acd.tar.xz docker-osx-8fffd79f1688b450fd75a8a072d546222c360acd.zip | |
Merge pull request #157 from sickcodes/helm-updates
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-- | Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 \ |