From 35177cff0ec6e8ef6653e8f4ef46c9ef579e46b6 Mon Sep 17 00:00:00 2001 From: Brooks Newberry Date: Thu, 6 Oct 2022 23:36:55 -0700 Subject: [PATCH] install gawk which Signed-off-by: Brooks Newberry --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b7971c4..b456b7a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,10 @@ RUN make clean && make build # Create the sriov-network-device-plugin image FROM ${BCI_IMAGE} WORKDIR / -RUN zypper install -y hwdata +RUN zypper refresh && \ + zypper update -y && \ + zypper install -y hwdata gawk which && \ + zypper clean -a COPY --from=builder /go/sriov-network-device-plugin/build/sriovdp /usr/bin/ COPY --from=builder /go/sriov-network-device-plugin/images/entrypoint.sh / ENTRYPOINT ["/entrypoint.sh"]