blob: f9c7fa8e27357710aead2530610379c5985206cf (
plain)
1
2
3
4
5
6
7
8
9
|
FROM gcr.io/google-containers/pause:latest
FROM debian:bullseye
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"]
|