khuedoan-homelab/tools/Dockerfile
Khue Doan 6097a1358a Add git back to the tools container
Kustomize needs git
2021-05-23 02:57:09 +07:00

20 lines
385 B
Docker

FROM archlinux
# TODO (optimize) Use reflector to generate mirrorlist dynamically
COPY ./mirrorlist /etc/pacman.d/mirrorlist
RUN yes | pacman --sync --refresh \
ansible \
docker \
docker-compose \
git \
kubectl \
libisoburn \
make \
python \
python-netaddr \
terraform \
zsh
CMD [ "/bin/zsh" ]