1
0
Fork 0
docker-toolbox/Dockerfile

34 lines
691 B
Docker
Raw Normal View History

2024-01-27 14:45:49 +01:00
FROM alpine:edge
LABEL maintainer "J. Elfring <code@elfring.ms>"
RUN apk add --update --no-cache \
bash \
bind-tools \
busybox-extras \
ca-certificates \
curl \
git \
jq \
mysql-client \
netcat-openbsd \
openssh-client \
openssl \
postgresql-client \
rsync \
socat \
sqlite \
vim \
w3m \
wget
2024-08-31 13:21:45 +02:00
RUN apk add --update --no-cache \
helm \
kubectl
2024-01-27 14:45:49 +01:00
ADD assets/profile.d/* /etc/profile.d/
COPY assets/vimrc /etc/vim/vimrc
WORKDIR /root
CMD /bin/bash -li