diff options
| author | sickcodes <[email protected]> | 2021-03-28 11:02:11 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-03-28 11:02:11 +0000 |
| commit | ba28790c130aa7b3f55bef5d00d184689df97443 (patch) | |
| tree | 1d266cb9a6c313d126589b6d040dfd6c6ad4b533 /Dockerfile.auto | |
| parent | Script to build all the images (diff) | |
| parent | Remove envsubst to allow interactive QEMU using -i (diff) | |
| download | docker-osx-ba28790c130aa7b3f55bef5d00d184689df97443.tar.xz docker-osx-ba28790c130aa7b3f55bef5d00d184689df97443.zip | |
Merge pull request #228 from sickcodes/qemu-interactive
Remove envsubst to allow interactive QEMU using -i
Diffstat (limited to 'Dockerfile.auto')
| -rw-r--r-- | Dockerfile.auto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile.auto b/Dockerfile.auto index 8175e3e..170029f 100644 --- a/Dockerfile.auto +++ b/Dockerfile.auto @@ -219,7 +219,7 @@ CMD echo "${BOILERPLATE}" \ /usr/bin/ssh-keygen -t rsa -f ~/.ssh/id_docker_osx -q -N "" \ && chmod 600 ~/.ssh/id_docker_osx \ ; } \ - ; envsubst < ./Launch.sh | bash \ + ; /bin/bash -c ./Launch.sh \ & echo "Booting Docker-OSX in the background. Please wait..." \ ; until [[ "$(sshpass -palpine ssh-copy-id -f -i ~/.ssh/id_docker_osx.pub -p 10022 [email protected])" ]]; do \ echo "Disk is being copied between layers. Repeating until able to copy SSH key into OSX..." \ |