14 lines
349 B
Docker
14 lines
349 B
Docker
FROM archlinux:base-devel
|
|
|
|
# Tweak pacman.conf
|
|
RUN sed 's/\#ParallelDownloads = 5/ParallelDownloads = 15/g' -i /etc/pacman.conf
|
|
|
|
# Initialize pacman keyring
|
|
RUN pacman-key --init
|
|
RUN pacman-key --populate
|
|
|
|
# Update system
|
|
RUN pacman -Syu --noconfirm
|
|
|
|
# Install packages required for actions to function properly
|
|
RUN pacman -S --noconfirm nodejs git
|