2021-04-21 14:50:34 +07:00
|
|
|
FROM archlinux
|
2021-04-20 09:41:06 +07:00
|
|
|
|
2021-08-16 02:25:59 +07:00
|
|
|
# Sort mirrors by speed
|
|
|
|
RUN pacman --sync --refresh --noconfirm \
|
|
|
|
reflector \
|
|
|
|
&& reflector \
|
|
|
|
--save /etc/pacman.d/mirrorlist \
|
|
|
|
--protocol https \
|
|
|
|
--latest 20 \
|
|
|
|
--sort rate
|
2021-05-16 14:49:59 +07:00
|
|
|
|
2021-04-21 14:50:34 +07:00
|
|
|
RUN yes | pacman --sync --refresh \
|
2021-04-20 09:41:06 +07:00
|
|
|
ansible \
|
2021-06-10 07:14:10 +07:00
|
|
|
ansible-lint \
|
|
|
|
diffutils \
|
2021-04-21 14:50:34 +07:00
|
|
|
docker \
|
2021-05-16 15:10:23 +07:00
|
|
|
docker-compose \
|
2021-05-23 02:57:09 +07:00
|
|
|
git \
|
2021-08-23 00:49:34 +07:00
|
|
|
graphviz \
|
2021-08-22 19:36:05 +07:00
|
|
|
helm \
|
2021-04-21 14:50:34 +07:00
|
|
|
kubectl \
|
2021-06-26 22:55:55 +07:00
|
|
|
libisoburn \
|
2021-04-20 09:41:06 +07:00
|
|
|
make \
|
2021-07-02 19:08:25 +07:00
|
|
|
mdbook \
|
2021-06-13 13:36:22 +07:00
|
|
|
p7zip \
|
2021-04-21 14:50:34 +07:00
|
|
|
python \
|
2021-05-15 14:05:43 +07:00
|
|
|
python-netaddr \
|
2021-06-20 03:42:00 +07:00
|
|
|
terraform \
|
|
|
|
zsh
|
|
|
|
|
|
|
|
CMD [ "/bin/zsh" ]
|