mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-09 06:47:01 +07:00
20 lines
339 B
Docker
20 lines
339 B
Docker
FROM archlinux
|
|
|
|
# TODO (bug) Investigate why --noconfirm is not working
|
|
RUN yes | pacman --sync --refresh \
|
|
ansible \
|
|
curl \
|
|
docker \
|
|
git \
|
|
helm \
|
|
kubectl \
|
|
lxd \
|
|
make \
|
|
neovim \
|
|
openssh \
|
|
python \
|
|
terragrunt \
|
|
zsh
|
|
|
|
CMD [ "/bin/zsh" ]
|