12 lines
248 B
Docker
12 lines
248 B
Docker
ARG BASEIMAGE=localhost/spark
|
|
FROM $BASEIMAGE
|
|
|
|
COPY ./mirrorlist /etc/pacman.d/mirrorlist
|
|
COPY gnupg /.gnupg
|
|
COPY ./build /build
|
|
|
|
RUN pacman -Sy --noconfirm archlinux-keyring
|
|
RUN pacman -Suy --noconfirm base-devel nodejs git
|
|
|
|
RUN chmod 700 /.gnupg
|