Skip to content

Commit

Permalink
Dockerfile: install iproute2
Browse files Browse the repository at this point in the history
The iproute2 tools are useful to debug networking issues inside the pod
network namespace.

Signed-off-by: Tobias Klauser <[email protected]>
  • Loading branch information
tklauser committed Nov 9, 2023
1 parent d854821 commit 1eddb20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ FROM docker.io/library/node:21.1.0-slim@sha256:d1144205c1f72a9788d42ba0b899a9fa2
RUN npm install -g json-server \
&& apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y curl \
&& apt-get install -y curl iproute2 \
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 1eddb20

Please sign in to comment.