khuedoan-homelab/tools/Dockerfile
Khue Doan fa7d69cef8 Remove helm package
Helm CLI will not work with Helm releases that have been deployed by ArgoCD.
This is expected behaviour.
https://github.com/argoproj/argo-cd/issues/1672
2021-05-23 01:39:38 +07:00

19 lines
371 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 \
kubectl \
libisoburn \
make \
python \
python-netaddr \
terraform \
zsh
CMD [ "/bin/zsh" ]