10 lines
362 B
Docker
10 lines
362 B
Docker
FROM archlinux:latest
|
|
|
|
RUN pacman-key --init
|
|
RUN pacman-key --populate archlinux
|
|
RUN pacman -Sy archlinux-keyring --noconfirm && pacman -Su --noconfirm
|
|
|
|
RUN pacman -Syu --noconfirm
|
|
RUN pacman -S make perl texlive texlive-binextra texlive-pictures --noconfirm
|
|
RUN pacman -S texlive-publishers texlive-mathscience texlive-fontsextra texlive-latexextra --noconfirm
|