Skip to content

Commit

Permalink
export SHORTNAME make OSX-KVM
Browse files Browse the repository at this point in the history
  • Loading branch information
sickcodes committed Nov 3, 2021
1 parent d36ac07 commit 31247a5
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ SHELL ["/bin/bash", "-c"]

# change disk size here or add during build, e.g. --build-arg VERSION=10.14.5 --build-arg SIZE=50G
ARG SIZE=200G
ARG VERSION=10.15.6
ARG VERSION=10.15.7

# OPTIONAL: Arch Linux server mirrors for super fast builds
# set RANKMIRRORS to any value other that nothing, e.g. -e RANKMIRRORS=true
Expand Down Expand Up @@ -144,25 +144,25 @@ RUN yes | sudo pacman -Syu qemu libvirt dnsmasq virt-manager bridge-utils openre
WORKDIR /home/arch/OSX-KVM
RUN wget https://raw.githubusercontent.com/sickcodes/Docker-OSX/master/fetch-macOS.py
RUN [[ "${VERSION%%.*}" -lt 11 ]] && { python fetch-macOS.py --version "${VERSION}" \
&& qemu-img convert BaseSystem.dmg -O qcow2 -p -c BaseSystem.img \
&& qemu-img create -f qcow2 mac_hdd_ng.img "${SIZE}" \
&& rm -f BaseSystem.dmg \
; } || true
# VERSION=11.2.1
# this downloads LATEST ONLY
ARG FETCH_MAC_OS_RAW=https://raw.githubusercontent.com/acidanthera/OpenCorePkg/master/Utilities/macrecovery/macrecovery.py
# submit a PR to here to get the version option https://github.com/acidanthera/OpenCorePkg/blob/master/Utilities/macrecovery/macrecovery.py
RUN [[ "${VERSION%%.*}" -ge 11 ]] && { wget "${FETCH_MAC_OS_RAW}" \
&& python macrecovery.py download \
&& qemu-img convert BaseSystem.dmg -O qcow2 -p -c BaseSystem.img \
&& qemu-img create -f qcow2 mac_hdd_ng.img "${SIZE}" \
&& rm -f BaseSystem.dmg \
; } || true
# RUN wget https://raw.githubusercontent.com/kholia/OSX-KVM/master/fetch-macOS-v2.py
ARG SHORTNAME=
# VERSION will just set the appropriate shortname
RUN [[ "${SHORTNAME}" ]] || \
if [[ $(bc <<< "${VERSION} >= 10.13") = 0 ]]; then \
export SHORTNAME=high-sierra \
; elif [[ $(bc <<< "${VERSION} >= 10.14") = 0 ]]; then \
export SHORTNAME=mojave \
; elif [[ $(bc <<< "${VERSION} >= 10.15") = 0 ]]; then \
export SHORTNAME=catalina \
; elif [[ $(bc <<< "${VERSION} >= 11.6") = 0 ]]; then \
export SHORTNAME=big-sur \
; elif [[ $(bc <<< "${VERSION} > 11.6") = 0 ]]; then \
export SHORTNAME=monterey \
; fi
RUN make
WORKDIR /home/arch/OSX-KVM
Expand Down

0 comments on commit 31247a5

Please sign in to comment.