prometheus-ovn-exporter: use sha256sum

shasum requires 30M of Perl on CentOS 9 while sha256sum is already
present.

Change-Id: I9372ebc643fced497ab01480f4c7cd6caa65c282
This commit is contained in:
Marcin Juszkiewicz 2022-09-02 11:48:25 +02:00
parent a2bb347df3
commit 2c2dc39b3b

View File

@ -24,7 +24,7 @@ ARG prometheus_ovn_url=https://github.com/greenpau/ovn_exporter/releases/downloa
RUN curl -o /tmp/${ovn_exporter_tgz} ${prometheus_ovn_url} \
&& curl -o /tmp/checksums.txt ${prometheus_ovn_cksum_url} \
&& cd /tmp \
&& shasum -a 256 --ignore-missing -c /tmp/checksums.txt \
&& sha256sum --ignore-missing -c /tmp/checksums.txt \
&& tar xvf /tmp/${ovn_exporter_tgz} -C /opt/ \
&& rm -f /tmp/${ovn_exporter_tgz} \
&& rm -f /tmp/checksums.txt