Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 15 additions & 16 deletions hack/toolbox/manifests/Dockerfile.heavy
Original file line number Diff line number Diff line change
@@ -1,30 +1,29 @@
FROM mcr.microsoft.com/oss/mirror/docker.io/library/ubuntu:20.04
RUN apt-get update
RUN apt-get install -y \
python3 \
python \
nmap \
iptables \
axel \
bridge-utils \
curl \
dnsutils \
ebtables \
sudo \
emacs \
iproute2 \
curl \
wget \
axel \
jq \
ssh \
traceroute \
iptables \
iputils-ping \
jq \
nano \
ncat \
net-tools \
dnsutils \
bridge-utils \
netcat \
ncat \
nmap \
python \
python3 \
ssh \
sudo \
tcpdump \
traceroute \
vim \
emacs \
nano
wget
RUN wget -qO- https://golang.org/dl/go1.14.6.linux-amd64.tar.gz | tar zxf - -C /usr/lib/
ENV PATH="/usr/lib/go/bin/:${PATH}"
ENV GOROOT="/usr/lib/go"
Expand Down
31 changes: 14 additions & 17 deletions hack/toolbox/server/Dockerfile.heavy
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,32 @@ ADD ./ /
WORKDIR /
RUN CGO_ENABLED=0 GOOS=linux go build -o server .

FROM docker.io/alpine:latest
RUN apk update
RUN apk add \
FROM mcr.microsoft.com/oss/mirror/docker.io/library/ubuntu:20.04
RUN apt-get update
RUN apt-get install -y \
axel \
bridge-utils \
bash \
curl \
bind-tools \
dnsutils \
ebtables \
htop \
iptables \
ipset \
emacs \
iproute2 \
iperf3 \
iftop \
iptables \
iputils-ping \
jq \
lsof \
nano \
ncat \
net-tools \
netcat-openbsd \
netcat \
nmap \
nethogs \
python \
python3 \
ssh \
sudo \
openssh \
tcpdump \
tcptraceroute \
unzip \
traceroute \
vim \
wget
wget

RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
RUN curl -LO "https://dl.k8s.io/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl.sha256"
Expand Down