Skip to content

Commit fea3c05

Browse files
BlueveCarl Keene
authored and
Carl Keene
committed
[ARM] Fix issue whre the ping6 tool is missing from orchagent docker (sonic-net#8345)
Signed-off-by: Jing Kan [email protected]
1 parent f1f4e43 commit fea3c05

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dockers/docker-orchagent/Dockerfile.j2

+4-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ RUN apt-get update && \
2424
python3-dev
2525

2626
{% if ( CONFIGURED_ARCH == "armhf" or CONFIGURED_ARCH == "arm64" ) %}
27-
# Fix for gcc/python not found in arm docker
27+
# Fix for gcc/python/iputils-ping not found in arm docker
2828
RUN apt-get install -f -y python2.7 python2.7-dev
29-
RUN apt-get install -y gcc-8
29+
RUN apt-get install -y \
30+
gcc-8 \
31+
iputils-ping
3032
{% endif %}
3133
{% if CONFIGURED_ARCH == "armhf" %}
3234
RUN ln -s -f /usr/bin/gcc-8 /usr/bin/arm-linux-gnueabihf-gcc

0 commit comments

Comments
 (0)