khuedoan-homelab/tools/Dockerfile

20 lines
333 B
Docker
Raw Normal View History

FROM archlinux
2021-04-20 09:41:06 +07:00
# TODO investigate why --noconfirm is not working
RUN yes | pacman --sync --refresh \
2021-04-20 09:41:06 +07:00
ansible \
curl \
docker \
2021-04-20 09:41:06 +07:00
git \
helm \
kubectl \
lxd \
2021-04-20 09:41:06 +07:00
make \
neovim \
openssh \
python \
terragrunt \
2021-04-20 09:41:06 +07:00
zsh
CMD [ "/bin/zsh" ]