diff options
| author | sickcodes <[email protected]> | 2021-02-12 18:20:36 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-12 18:20:36 +0000 |
| commit | d6b99ff62e608aab7cb5e67966fe5aa202e3e755 (patch) | |
| tree | 5d8ae1d9a5c0fe09ae662ac7c81c3a1893f07e06 /Dockerfile | |
| parent | Merge pull request #150 from MrBenFTW/patch-2 (diff) | |
| parent | Self-host in the repo glibc to emphasize the temporariness of this patch. (diff) | |
| download | docker-osx-d6b99ff62e608aab7cb5e67966fe5aa202e3e755.tar.xz docker-osx-d6b99ff62e608aab7cb5e67966fe5aa202e3e755.zip | |
Merge pull request #151 from sickcodes/docker-osx-kubernetes
Docker OSX Kubernetes
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -65,11 +65,13 @@ ARG VERSION=10.15.6 ARG RANKMIRRORS ARG MIRROR_COUNTRY=US ARG MIRROR_COUNT=10 + # TEMP-FIX for pacman issue -RUN patched_glibc=glibc-linux4-2.33-4-x86_64.pkg.tar.zst && \ -curl -LO "https://repo.archlinuxcn.org/x86_64/$patched_glibc" && \ -bsdtar -C / -xvf "$patched_glibc" +RUN patched_glibc=glibc-linux4-2.33-4-x86_64.pkg.tar.zst \ + && curl -LO "https://raw.githubusercontent.com/sickcodes/Docker-OSX/master/$patched_glibc" \ + && bsdtar -C / -xvf "$patched_glibc" # TEMP-FIX for pacman issue + RUN if [[ "${RANKMIRRORS}" ]]; then \ { pacman -Sy wget --noconfirm || pacman -Syu wget --noconfirm ; } \ ; wget -O ./rankmirrors "https://raw.githubusercontent.com/sickcodes/Docker-OSX/master/rankmirrors" \ |