khuedoan-homelab/tools/Dockerfile

20 lines
385 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 \
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" ]