alnx-build/Dockerfile

10 lines
167 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:30:51 +00:00
RUN pacman -Sy --yes 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 .