khuedoan-homelab/tools/Dockerfile

20 lines
339 B
Docker
Raw Normal View History

FROM archlinux
2021-04-20 09:41:06 +07:00
2021-05-01 22:51:55 +07:00
# TODO (bug) 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" ]