Docker-OSX/Dockerfile

91 lines
3.1 KiB
Docker
Raw Normal View History

2020-06-05 18:41:37 +00:00
#!/usr/bin/docker
2020-06-04 18:31:47 +00:00
# ____ __ ____ ______ __
# / __ \____ _____/ /_____ _____/ __ \/ ___/ |/ /
# / / / / __ \/ ___/ //_/ _ \/ ___/ / / /\__ \| /
# / /_/ / /_/ / /__/ ,< / __/ / / /_/ /___/ / |
# /_____/\____/\___/_/|_|\___/_/ \____//____/_/|_|
#
# Title: Mac on Docker (Docker-OSX)
2020-06-04 20:25:29 +00:00
# Author: Sick.Codes https://sick.codes/
2020-06-04 18:31:47 +00:00
# Version: 1.0
# License: GPLv3
#
2020-06-04 20:25:29 +00:00
# All credits for OSX-KVM and the rest at Kholia's repo: https://github.com/kholia/osx-kvm
# OpenCore support go to https://github.com/Leoyzen/KVM-Opencore
# and https://github.com/thenickdude/KVM-Opencore/
2020-06-04 18:31:47 +00:00
#
# This Dockerfile automates the installation of Docker-OSX
# It will build a 32GB Mojave Disk, you can change the size using build arguments.
# This file builds on top of the work done by Dhiru Kholia and many others.
#
# Build:
#
# docker build -t docker-osx .
#
# docker build -t docker-osx --build-arg VERSION=10.14.6 --build-arg SIZE=200G
#
# Run:
#
# docker run --privileged -v /tmp/.X11-unix:/tmp/.X11-unix docker-osx
#
FROM archlinux:latest
MAINTAINER 'https://sick.codes' <https://sick.codes>
# change disk size here or add during build, e.g. --build-arg VERSION=10.14.6 --build-arg SIZE=50G
ARG SIZE=32G
ARG VERSION=10.14.6
2020-06-04 22:17:01 +00:00
# This fails on hub.docker.com
# RUN [[ $(egrep -c '(svm|vmx)' /proc/cpuinfo) -gt 0 ]] || { echo KVM not possible on this host && exit 1; }
2020-06-04 18:31:47 +00:00
WORKDIR /root
RUN tee -a /etc/pacman.conf <<< '[community-testing]'
RUN tee -a /etc/pacman.conf <<< 'Include = /etc/pacman.d/mirrorlist'
RUN pacman -Syu --noconfirm
RUN pacman -S sudo git make automake gcc python go autoconf cmake pkgconf alsa-utils fakeroot --noconfirm
RUN useradd arch
RUN echo 'arch ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
RUN mkdir /home/arch
RUN chown arch:arch /home/arch
USER arch
WORKDIR /home/arch
RUN git clone https://github.com/corpnewt/gibMacOS.git
WORKDIR /home/arch/gibMacOS
RUN perl -p -i -e 's/print("Succeeded:")/exit()/' ./gibMacOS.command
# this command takes a while!
2020-06-09 22:32:04 +00:00
RUN python gibMacOS.command -v "${VERSION}" -d || echo Done
2020-06-04 18:31:47 +00:00
RUN sudo pacman -S qemu libvirt dnsmasq virt-manager bridge-utils flex bison ebtables edk2-ovmf --noconfirm
2020-06-05 01:57:01 +00:00
# RUN sudo systemctl enable libvirtd.service
# RUN sudo systemctl enable virtlogd.service
2020-06-04 18:31:47 +00:00
WORKDIR /home/arch
RUN git clone https://github.com/kholia/OSX-KVM.git
RUN sudo pacman -Syu netctl libvirt-dbus libguestfs --noconfirm
WORKDIR /home/arch/OSX-KVM
RUN sed -i -e 's/usb-mouse/usb-tablet/g' OpenCore-Boot.sh
RUN chmod +x OpenCore-Boot.sh
WORKDIR /home/arch/OSX-KVM
RUN qemu-img convert ${HOME}/gibMacOS/macOS\ Downloads/publicrelease/*/BaseSystem.dmg -O raw ${HOME}/OSX-KVM/BaseSystem.img
RUN qemu-img create -f qcow2 mac_hdd_ng.img "${SIZE}"
RUN perl -p -i -e \
's/-netdev tap,id=net0,ifname=tap0,script=no,downscript=no -device vmxnet3,netdev=net0,id=net0,mac=52:54:00:c9:18:27/-netdev user,id=net0 -device vmxnet3,netdev=net0,id=net0,mac=52:54:00:09:49:17/' \
./OpenCore-Boot.sh
ENV DISPLAY :0.0
ENV USER arch
USER arch
VOLUME ["/tmp/.X11-unix"]
CMD ./OpenCore-Boot.sh