Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 631bf37

Browse files
committed
Add iproute2 to avoid warnings about "ip" command not being found
1 parent b959b92 commit 631bf37

File tree

56 files changed

+64
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+64
-55
lines changed

container-templates/docker-compose/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN apt-get update \
2727
&& apt-get -y install --no-install-recommends apt-utils dialog 2>&1 \
2828
#
2929
# Verify git, process tools, lsb-release (common in install instructions for CLIs) installed
30-
&& apt-get -y install git procps lsb-release \
30+
&& apt-get -y install git iproute2 procps lsb-release \
3131
#
3232
# *****************************************************
3333
# * Add steps for installing needed dependencies here *

container-templates/dockerfile/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN apt-get update \
2222
&& apt-get -y install --no-install-recommends apt-utils dialog 2>&1 \
2323
#
2424
# Verify git, process tools, lsb-release (common in install instructions for CLIs) installed
25-
&& apt-get -y install git procps lsb-release \
25+
&& apt-get -y install git iproute2 procps lsb-release \
2626
#
2727
# *****************************************************
2828
# * Add steps for installing needed dependencies here *

containers/azure-ansible/.devcontainer/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ RUN apt-get update \
2424
# Verify git, required tools installed
2525
&& apt-get install -y \
2626
git \
27+
iproute2 \
2728
curl \
2829
procps \
2930
unzip \

containers/azure-blockchain/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN apt-get update \
2121
&& apt-get -y install --no-install-recommends apt-utils dialog 2>&1 \
2222
#
2323
# Verify git, process tools installed
24-
&& apt-get -y install git procps \
24+
&& apt-get -y install git iproute2 procps \
2525
#
2626
# Install nodejs
2727
&& curl -sL https://deb.nodesource.com/setup_10.x | bash - \

containers/azure-cli/.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN apt-get update \
2121
&& apt-get -y install --no-install-recommends apt-utils dialog 2>&1 \
2222
#
2323
# Verify git, process tools installed
24-
&& apt-get -y install git procps \
24+
&& apt-get -y install git iproute2 procps \
2525
#
2626
# Install the Azure CLI
2727
&& apt-get install -y apt-transport-https curl gnupg2 lsb-release \

containers/azure-functions-dotnetcore-2.1/.devcontainer/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ RUN apt-get update \
2323
# Verify git and needed tools are installed
2424
&& apt-get -y install \
2525
git \
26+
iproute2 \
2627
procps \
2728
curl \
2829
apt-transport-https \

containers/azure-functions-dotnetcore-latest/.devcontainer/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ RUN apt-get update \
2323
# Verify git and needed tools are installed
2424
&& apt-get -y install \
2525
git \
26+
iproute2 \
2627
procps \
2728
curl \
2829
apt-transport-https \

containers/azure-functions-java-8/.devcontainer/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ RUN apt-get update \
2323
# Verify git and needed tools are installed
2424
&& apt-get -y install \
2525
git \
26+
iproute2 \
2627
procps \
2728
curl \
2829
apt-transport-https \

containers/azure-functions-node-8/.devcontainer/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ RUN apt-get update \
2222
# Verify git and needed tools are installed
2323
&& apt-get -y install \
2424
git \
25+
iproute2 \
2526
procps \
2627
curl \
2728
apt-transport-https \

containers/azure-functions-node-lts/.devcontainer/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ RUN apt-get update \
2222
# Verify git and needed tools are installed
2323
&& apt-get -y install \
2424
git \
25+
iproute2 \
2526
procps \
2627
curl \
2728
apt-transport-https \

0 commit comments

Comments
 (0)