diff options
| author | sickcodes <[email protected]> | 2021-02-12 16:02:45 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-12 16:02:45 +0000 |
| commit | fad0c874b5eba444db0b622b23b1060136bd7af6 (patch) | |
| tree | c807af3550ca6686366c8faf9b1150fe36150fb2 /Dockerfile | |
| parent | Package the helm setup for Artifact Hub. (diff) | |
| parent | Tempfix for arch (diff) | |
| download | docker-osx-fad0c874b5eba444db0b622b23b1060136bd7af6.tar.xz docker-osx-fad0c874b5eba444db0b622b23b1060136bd7af6.zip | |
Merge pull request #150 from MrBenFTW/patch-2
Tempfix for arch
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -65,6 +65,11 @@ 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" +# 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" \ |