mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-15 11:03:00 +01:00
https://git.archlinux.org/svntogit/packages.git/commit/trunk/PKGBUILD?h=packages/libdrm&id=d490fde508be38c2758588bb3b42b29101edcd78 enabled udev support in libdrm, however the dependency array was not updated to reflect that, resulting in missing package in our docker container. This explicitly adds systemd to installed packages. Upstream bug at https://bugs.archlinux.org/task/57851
7 lines
309 B
Docker
7 lines
309 B
Docker
FROM nfnty/arch-mini
|
|
|
|
RUN pacman -Syyu --noconfirm
|
|
RUN pacman -S --noconfirm gcc gcc-libs git curl jshon expac yajl wget unzip cmake ninja && pacman -Sc
|
|
RUN pacman -S --noconfirm systemd curl sdl2 speex fontconfig openssl libpng jansson libzip && pacman -Sc
|
|
RUN pacman -S --noconfirm --needed make pkg-config
|