mirror of
https://github.com/heyhusen/archlinux-package-action.git
synced 2025-04-02 17:45:02 +02:00
17 lines
384 B
Docker
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"]
|