alnx-build/Dockerfile

10 lines
173 B
Docker
Raw Normal View History

2024-01-27 14:26:26 +00:00
FROM docker.io/library/archlinux:base-devel
2024-01-27 14:32:06 +00:00
RUN pacman -Sy --noconfirm git
2024-01-27 14:26:26 +00:00
RUN useradd -ms /bin/bash builduser
USER builduser
WORKDIR /home/builduser
2024-01-27 14:27:29 +00:00
COPY build_pkg.sh .