This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM archlinux | |
| # Temporary patch for support old docker versions (like the default one in ubunutu 18.04) | |
| 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 pacman -Syyu --noconfirm && pacman-db-upgrade && pacman -S --noconfirm --needed base-devel cmake curl mpfr libmpc gmp e2fsprogs ninja qemu qemu-arch-extra git pulseaudio-alsa | |
| RUN git clone https://github.com/bestouff/genext2fs |
OlderNewer