Skip to content

Commit 1eddb20

Browse files
committed
Dockerfile: install iproute2
The iproute2 tools are useful to debug networking issues inside the pod network namespace. Signed-off-by: Tobias Klauser <[email protected]>
1 parent d854821 commit 1eddb20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FROM docker.io/library/node:21.1.0-slim@sha256:d1144205c1f72a9788d42ba0b899a9fa2
1010
RUN npm install -g json-server \
1111
&& apt-get update \
1212
&& apt-get upgrade -y \
13-
&& apt-get install -y curl \
13+
&& apt-get install -y curl iproute2 \
1414
&& apt-get autoremove -y \
1515
&& apt-get clean \
1616
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)