Files

16 lines
443 B
Docker
Raw Permalink Normal View History

2021-03-06 09:28:11 +03:00
ARG BASEIMAGE=localhost/spark
FROM $BASEIMAGE
2021-03-01 09:38:00 +03:00
2023-10-25 11:59:33 +00:00
COPY ./mirrorlist /etc/pacman.d/mirrorlist
2021-03-06 06:48:58 +03:00
COPY gnupg /.gnupg
2021-02-27 02:50:00 +03:00
COPY ./build /build
2021-03-01 15:43:07 +03:00
2026-06-22 18:58:19 +00:00
# No landlock in containers
RUN sed -ri 's/^#DisableSandboxFilesystem/DisableSandboxFilesystem/' /etc/pacman.conf
2023-10-25 11:59:33 +00:00
RUN pacman -Sy --noconfirm archlinux-keyring
2026-06-22 18:58:19 +00:00
RUN pacman -Rdd --noconfirm systemd-libs-systemd systemd-libs-udev
RUN pacman -Suy --noconfirm base-devel nodejs git systemd-libs
2022-12-16 13:09:53 +00:00
2021-03-01 15:43:07 +03:00
RUN chmod 700 /.gnupg