aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2021-02-26 06:42:57 +0000
committersickcodes <[email protected]>2021-02-26 06:42:57 +0000
commit258f6b455d14aeb449260b668a9d16478a48ac5c (patch)
treef6d3793c6562527ad781acf929d38a8216f7c9f7 /Dockerfile
parentNOPICKER now does: `sed -i '/^.*InstallMedia.*/d' Launch.sh` (diff)
downloaddocker-osx-258f6b455d14aeb449260b668a9d16478a48ac5c.tar.xz
docker-osx-258f6b455d14aeb449260b668a9d16478a48ac5c.zip
Fix /env permissions for persistence after GENERATE_UNIQUE. Fix the following warning by chowning /dev/kvm earlier "libguestfs: warning: current user is not a member of the KVM group (group ID 108). This user cannot access /dev/kvm, so libguestfs may run very slowly. It is recommended that you 'chmod 0666 /dev/kvm' or add the current user to the KVM group (you might need to log out and log in again)."
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index f1f9f88..77445c9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -264,7 +264,7 @@ VOLUME ["/tmp/.X11-unix"]
# the default serial numbers are already contained in ./OpenCore-Catalina/OpenCore.qcow2
# And the default serial numbers
-CMD sudo chown "$(id -u)":"$(id -g)" "${IMAGE_PATH}" "${BOOTDISK}" 2>/dev/null || true \
+CMD sudo chown -R $(id -u):$(id -g) /dev/kvm /dev/snd "${IMAGE_PATH}" "${BOOTDISK}" "${ENV}" 2>/dev/null || true \
; case "$(file --brief /image)" in \
QEMU\ QCOW2\ Image* ) export IMAGE_PATH=/image \
;; \