Archived
1
0
Fork 0
This repository has been archived on 2024-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
dockerfiles/toolbox/Dockerfile
J. Elfring 06ce14aae7 Fix toolbox:
color-prompt.sh is no longer there by default.
2021-07-03 00:19:05 +02:00

39 lines
645 B
Docker

FROM alpine:latest
LABEL maintainer "J. Elfring <code@elfring.ms>"
RUN apk add --update --no-cache \
bash \
bind-tools \
busybox-extras \
ca-certificates \
curl \
git \
jq \
msmtp \
mysql-client \
netcat-openbsd \
openssh-client \
openssl \
postgresql-client \
rsync \
socat \
sqlite \
vim \
w3m \
wget
RUN apk add --update --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
helm \
kubectl
ADD assets/profile.d/* /etc/profile.d/
COPY assets/vimrc /etc/vim/vimrc
WORKDIR /root
CMD /bin/bash -li