Skip to content

Commit

Permalink
Merge pull request #270 from ykulazhenkov/config-daemon-dockerfile
Browse files Browse the repository at this point in the history
Remove "yum update" command from config-daemon Dockerfile
  • Loading branch information
pliurh authored Mar 29, 2022
2 parents ae1b39d + 5dee5ba commit 1e0fc79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile.sriov-network-config-daemon
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN make plugins BIN_PATH=build/_output/pkg

FROM quay.io/centos/centos:stream8
ARG MSTFLINT=mstflint
RUN yum -y update && ARCH_DEP_PKGS=$(if [ "$(uname -m)" != "s390x" ]; then echo -n ${MSTFLINT} ; fi) && yum -y install hwdata $ARCH_DEP_PKGS && yum clean all
RUN ARCH_DEP_PKGS=$(if [ "$(uname -m)" != "s390x" ]; then echo -n ${MSTFLINT} ; fi) && yum -y install hwdata $ARCH_DEP_PKGS && yum clean all
LABEL io.k8s.display-name="sriov-network-config-daemon" \
io.k8s.description="This is a daemon that manage and config sriov network devices in Kubernetes cluster"
COPY --from=builder /go/src/github.com/k8snetworkplumbingwg/sriov-network-operator/build/_output/cmd/sriov-network-config-daemon /usr/bin/
Expand Down

0 comments on commit 1e0fc79

Please sign in to comment.