blob: 1d1244bd669b8c7972f73c82288d871b2c14d374 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FROM docker.io/library/archlinux
ENV container docker
RUN pacman -Syu --noconfirm --needed python3 systemd udev dbus \
&& pacman -Scc --noconfirm
# Workaround archlinux not including any non-indo-european locales
# https://gitlab.archlinux.org/archlinux/archlinux-docker/-/issues/59
RUN cp -r /usr/share/i18n/locales/en_US /usr/share/i18n/locales/de_DE;
VOLUME ["/sys/fs/cgroup"]
CMD ["/lib/systemd/systemd"]
|