aboutsummarylogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorRandy Fay2020-04-21 17:52:54 -0600
committerRandy Fay2020-04-21 17:52:54 -0600
commit1c5d7311230e46347f5080b7800276a02b2240c4 (patch)
treeb551bd2e94a30493325e7137ccd7a3987e9e0f9f /Dockerfile
parenta6b0c812824810adab9d3ee603c64a73de8ff9a8 (diff)
downloadaur-1c5d7311230e46347f5080b7800276a02b2240c4.tar.gz
Bump to v1.14.0
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 000000000000..91f974cf464b
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,10 @@
+# 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
+# su builder
+# 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"