summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/docker/archlinux/Dockerfile16
1 files changed, 15 insertions, 1 deletions
diff --git a/util/docker/archlinux/Dockerfile b/util/docker/archlinux/Dockerfile
index 9c804835bf35..d3309d09b46c 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/*