10 lines
286 B
Docker
10 lines
286 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-key --refresh-keys
|
|
|
|
RUN pacman -Syu --noconfirm
|
|
RUN pacman -S perl texlive texlive-binextra texlive-pictures --noconfirm
|