diff options
| author | sickcodes <[email protected]> | 2021-01-26 21:25:45 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2021-01-26 21:25:45 +0000 |
| commit | 8db77770b05157d24a40f5341dd0104ad0e7fd43 (patch) | |
| tree | 64422e9686433e9cbfc0cad0c669bdf6b92c442a /Dockerfile | |
| parent | zstd decompress instead of re-compress in README.md (diff) | |
| download | docker-osx-8db77770b05157d24a40f5341dd0104ad0e7fd43.tar.xz docker-osx-8db77770b05157d24a40f5341dd0104ad0e7fd43.zip | |
Remove pointless VOLUME command. Replace curl with wget.
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -193,14 +193,12 @@ ENV DISPLAY=:0.0 USER arch -VOLUME ["/tmp/.X11-unix"] - -VOLUME /image - ENV IMAGE_PATH=/home/arch/OSX-KVM/mac_hdd_ng.img +VOLUME ["/tmp/.X11-unix"] + CMD case "$(file --brief /image)" in \ - QEMU*) export IMAGE_PATH=/image;; \ + QEMU*) export IMAGE_PATH=/image && sudo chown "$(id -u)":"$(id -g)" "${IMAGE_PATH}" 2>/dev/null || true;; \ directory*) export IMAGE_PATH=/home/arch/OSX-KVM/mac_hdd_ng.img;; \ esac \ ; ./enable-ssh.sh && envsubst < ./Launch.sh | bash |