Update Openstack-exporter docker file

Updated the docker build to pull prometheus-client 0.0.13 which has registry
that works with this exporter. The registry in prometheus-client 0.7.1 version onwards
is dropping the stat with same name.

Change-Id: I2de95d92db01c846a60bb63c912af0a09b6b4987
This commit is contained in:
Pai Radhika 2020-06-09 17:20:11 +00:00
parent 160aeb335f
commit 976c1341b0
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ FROM ${FROM}
RUN apt-get -y update \
&& apt-get install --no-install-recommends -y python3 python3-pip curl python3-setuptools \
&& python3 -m pip install --upgrade pip \
&& python3 -m pip install python-dateutil requests simplejson pyyaml prometheus-client \
&& python3 -m pip install python-dateutil requests simplejson pyyaml prometheus-client==0.0.13 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*