Files
archmakepkg/Dockerfile
ytshih 653800c863
All checks were successful
Release / release-image (push) Successful in 3m3s
Remove: ENVs in Dockerfile
2024-10-18 17:44:42 +00:00

15 lines
369 B
Docker

FROM archlinux:base-devel
RUN pacman-key --init && pacman-key --populate
RUN pacman -Syu --needed --noconfirm nodejs minio-client git
ADD rootca.pem /root
RUN trust anchor /root/rootca.pem && update-ca-trust
RUN echo '%wheel ALL=(ALL:ALL) NOPASSWD: ALL' >> /etc/sudoers
RUN useradd -G wheel -d /build builder
WORKDIR /build
ENTRYPOINT ["/usr/bin/env"]
CMD ["bash"]