2
0
Fork 0
archlinux-package-action/Dockerfile
2021-05-18 16:49:00 +07:00

17 lines
384 B
Docker

# Base image
FROM docker.io/library/archlinux:base-devel
# Install dependencies
RUN pacman -Syu --needed --noconfirm pacman-contrib namcap
# Setup user
RUN useradd -m builder \
usermod -aG wheel builder \
echo 'wheel ALL=(ALL:ALL) ALL' >> /etc/sudoers
# Copy files
COPY LICENSE README.md /
COPY entrypoint.sh /entrypoint.sh
# Set entrypoint
ENTRYPOINT ["/entrypoint.sh"]