Skip to content

Instantly share code, notes, and snippets.

@akdev1l
Created May 7, 2023 15:30
Show Gist options
  • Save akdev1l/00bafd4f2771d02b3e44b6edf87eff32 to your computer and use it in GitHub Desktop.
Save akdev1l/00bafd4f2771d02b3e44b6edf87eff32 to your computer and use it in GitHub Desktop.
container to get the MS fonts
FROM archlinux:latest as builder
RUN pacman -Syu --noconfirm \
&& pacman -S --noconfirm base-devel udisks2 p7zip \
&& useradd -m -G wheel builduser \
&& echo '%wheel ALL=(ALL:ALL) NOPASSWD: ALL' >> /etc/sudoers
USER builduser
RUN mkdir ~/mscore-ttf \
&& cd ~/mscore-ttf \
&& curl 'https://gist.githubusercontent.com/akdev1l/f5c0247d2d8d33b8a4f8041e826cec10/raw/ca559289daadc8c637443836ce360af7eb0a7357/PKGBUILD' -Lo PKGBUILD \
&& makepkg -si --noconfirm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment