khuedoan-homelab/tools/Dockerfile

22 lines
428 B
Docker
Raw Normal View History

FROM archlinux
2021-04-20 09:41:06 +07:00
# TODO (optimize) Use reflector to generate mirrorlist dynamically
COPY ./mirrorlist /etc/pacman.d/mirrorlist
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 \
kubectl \
libisoburn \
2021-04-20 09:41:06 +07:00
make \
python \
2021-05-15 14:05:43 +07:00
python-netaddr \
terraform \
2021-04-20 09:41:06 +07:00
zsh
CMD [ "/bin/zsh" ]