diff options
-rw-r--r-- | util/docker/archlinux/Dockerfile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/util/docker/archlinux/Dockerfile b/util/docker/archlinux/Dockerfile new file mode 100644 index 0000000000..9c804835bf --- /dev/null +++ b/util/docker/archlinux/Dockerfile @@ -0,0 +1,19 @@ +FROM archlinux:latest + +RUN pacman-key --init && \ + pacman -Sy --noconfirm archlinux-keyring && \ + pacman-key --populate && \ + pacman-key --refresh-keys && \ + pacman -Syu --noconfirm + +RUN pacman -S --noconfirm \ + base-devel \ + bash-completion \ + gcc-ada \ + git \ + go \ + htop \ + neovim \ + python3 \ + tmux && \ + rm -r /var/cache/pacman/pkg/* |