mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-08 14:33:52 +07:00
18 lines
312 B
Docker
18 lines
312 B
Docker
FROM alpine
|
|
|
|
RUN apk add --no-cache \
|
|
curl \
|
|
docker-cli \
|
|
make \
|
|
neovim \
|
|
python3 \
|
|
tree \
|
|
zsh
|
|
|
|
RUN apk add --no-cache --repository "http://dl-cdn.alpinelinux.org/alpine/edge/testing" \
|
|
helm \
|
|
kubectl \
|
|
terraform
|
|
|
|
WORKDIR /root/src
|