summaryrefslogtreecommitdiffstats
path: root/tests/distros/Dockerfile.arch
diff options
context:
space:
mode:
Diffstat (limited to 'tests/distros/Dockerfile.arch')
-rw-r--r--tests/distros/Dockerfile.arch22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/distros/Dockerfile.arch b/tests/distros/Dockerfile.arch
new file mode 100644
index 0000000..3224495
--- /dev/null
+++ b/tests/distros/Dockerfile.arch
@@ -0,0 +1,22 @@
+# syntax=docker/dockerfile:1.3
+
+FROM docker.io/library/archlinux:latest
+
+RUN pacman-key --init \
+ && pacman --sync --refresh --sysupgrade --noconfirm make python3 \
+ && printf "LANG=en_US.UTF-8\n" > /etc/locale.conf \
+ && locale-gen \
+ && pacman --sync --clean --clean --noconfirm
+
+WORKDIR /usr/src/app
+
+COPY asciinema/ asciinema/
+COPY tests/ tests/
+
+ENV LANG="en_US.utf8"
+
+USER nobody
+
+ENTRYPOINT ["/bin/bash"]
+
+# vim:ft=dockerfile