Skip to content

Commit fc1c77e

Browse files
authored
adding ping to debug image (#69)
Add ping and iproute to debug container
1 parent 5daa47c commit fc1c77e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/debug-partner-image.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ jobs:
3434
- name: 'Test: Check if lspci is installed'
3535
run: docker run $IMAGE_NAME:$IMAGE_TAG which lspci
3636

37+
- name: 'Test: Check if ping is installed'
38+
run: docker run $IMAGE_NAME:$IMAGE_TAG which ping
39+
40+
- name: 'Test: Check if ip is installed'
41+
run: docker run $IMAGE_NAME:$IMAGE_TAG which ip
42+
3743
push-debug-partner-image:
3844
if: ${{ github.ref == 'refs/heads/main' }}
3945
name: 'Push the new `debug-partner` image to Quay.io'

test-partner/Dockerfile.debug-partner

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM registry.access.redhat.com/ubi8/ubi:latest
22

33
RUN \
44
yum -y update && \
5-
yum -y install pciutils util-linux net-tools procps-ng && \
5+
yum -y install pciutils util-linux net-tools procps-ng iputils iproute && \
66
yum clean all -y && \
77
rm -rf /var/cache/yum
88

0 commit comments

Comments
 (0)