blob: ac45daf10d41c168aacd8995b07291e819d62e93 (
plain)
1
2
3
4
5
6
7
8
9
|
FROM gcr.io/google-containers/pause:latest
FROM registry.gitlab.com/grumps/grumpy-containers/base:${BASE_VER}
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y \
&& apt-get upgrade -y \
&& apt-get install -y curl dnsutils jq vim kubernetes-client tmux ldap-utils ncat nmap hping3
COPY --from=0 /pause /usr/local/bin/pause
CMD ["/usr/local/bin/pause"]
|