khuedoan-homelab/tools/Dockerfile

32 lines
601 B
Docker
Raw Normal View History

FROM archlinux
2021-04-20 09:41:06 +07:00
# Sort mirrors by speed
RUN pacman --sync --refresh --noconfirm \
reflector \
&& reflector \
--save /etc/pacman.d/mirrorlist \
--protocol https \
--latest 20 \
--sort rate
RUN yes | pacman --sync --refresh \
2021-04-20 09:41:06 +07:00
ansible \
2021-06-10 07:14:10 +07:00
ansible-lint \
diffutils \
docker \
docker-compose \
git \
2021-08-23 00:49:34 +07:00
graphviz \
2021-08-22 19:36:05 +07:00
helm \
kubectl \
libisoburn \
2021-04-20 09:41:06 +07:00
make \
mdbook \
2021-06-13 13:36:22 +07:00
p7zip \
python \
2021-05-15 14:05:43 +07:00
python-netaddr \
terraform \
zsh
CMD [ "/bin/zsh" ]