Skip to content
Snippets Groups Projects

Update the base system of Arch Linux images

3 files
+ 43
3
Compare changes
  • Side-by-side
  • Inline
Files
3
FROM archlinux:base
LABEL maintainer="Ingo Meyer <i.meyer@fz-juelich.de>"
RUN pacman -Syu --noconfirm git cmake make grep awk patch gcc pkgconf automake autoconf mesa xorg-xrandr libxinerama libxcursor qt5-base nasm
RUN pacman -Syu --noconfirm && \
pacman -Sy --noconfirm --needed \
autoconf \
automake \
awk \
cmake \
gcc \
git \
grep \
libxcursor \
libxinerama \
make \
mesa \
nasm \
patch \
pkgconf \
qt5-base \
xorg-xrandr && \
yes | pacman -Scc
Loading