diff --git a/util/docker/archlinux/Dockerfile b/util/docker/archlinux/Dockerfile index 9c804835bf..d3309d09b4 100644 --- a/util/docker/archlinux/Dockerfile +++ b/util/docker/archlinux/Dockerfile @@ -1,5 +1,9 @@ FROM archlinux:latest +RUN \ + echo "export EDITOR=nvim" > /etc/profile.d/cbsettings.sh && \ + chmod 755 /etc/profile.d/cbsettings.sh + RUN pacman-key --init && \ pacman -Sy --noconfirm archlinux-keyring && \ pacman-key --populate && \ @@ -9,11 +13,21 @@ RUN pacman-key --init && \ RUN pacman -S --noconfirm \ base-devel \ bash-completion \ + bzip2 \ + ccache \ + cscope \ gcc-ada \ git \ go \ htop \ + lcov \ + less \ + msitools \ neovim \ + openssl \ python3 \ - tmux && \ + shellcheck \ + tmux \ + unzip \ + xz && \ rm -r /var/cache/pacman/pkg/*