aboutsummarylogtreecommitdiffstats
path: root/Dockerfile
blob: e7874cf3bb6c917bd65cfdac65d6203092b99d46 (plain)
1
2
3
4
5
6
7
8
9
# Build this with `docker build -t arch .`
# Then run it with
# docker run -it --rm --mount type=bind,source=$(pwd),target=/tmp/ddev-bin --workdir=/tmp/ddev-bin arch
# makepkg --printsrcinfo > .SRCINFO
# makepkg -s
FROM archlinux:latest
RUN echo | pacman -Sy sudo binutils fakeroot docker docker-compose
RUN useradd builder
CMD bash -c "su builder"