summaryrefslogtreecommitdiff
path: root/util/docker/archlinux/Dockerfile
blob: 9c804835bf355e7ca79a466144a5c25b443bb6fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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/*