14 lines
825 B
Docker
14 lines
825 B
Docker
FROM archlinux:base-devel
|
|
RUN echo 'Server = http://mirror.srv.it-syndikat.org/archlinux/$repo/os/$arch' > /etc/pacman.d/mirrorlist
|
|
RUN pacman-key --init
|
|
RUN pacman-key --populate
|
|
RUN echo "Server = http://mirror.srv.it-syndikat.org/archlinux/\$repo/os/\$arch" > /etc/pacman.d/mirrorlist
|
|
RUN echo "[its]" >> /etc/pacman.conf
|
|
RUN echo "Include = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf
|
|
RUN curl -O https://mirror.srv.it-syndikat.org/archlinux/its.key
|
|
RUN pacman-key --add its.key
|
|
RUN pacman-key --lsign 18CA6B55832C78DE056BE613745ED9868F341E93
|
|
RUN pacman -Sy --noconfirm archlinux-keyring
|
|
RUN pacman -Syu --noconfirm
|
|
RUN pacman -S --noconfirm nodejs git git-lfs make pacman-contrib base base-devel openssh wget curl procps-ng bash hugo rsync mkdocs-material python-pymdown-extensions python-dateutil
|
|
RUN git lfs install
|