mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-27 08:00:36 +07:00
22 lines
380 B
Docker
22 lines
380 B
Docker
FROM alpine
|
|
|
|
RUN apk add --no-cache \
|
|
ansible \
|
|
curl \
|
|
docker-cli \
|
|
git \
|
|
make \
|
|
neovim \
|
|
openssh \
|
|
python3 \
|
|
tree \
|
|
zsh
|
|
|
|
RUN apk add --no-cache --repository "http://dl-cdn.alpinelinux.org/alpine/edge/testing" \
|
|
helm \
|
|
kubectl \
|
|
lxd \
|
|
terraform
|
|
|
|
ENTRYPOINT "/bin/zsh"
|