From 0a6da3fc7d81cd4111be26df9141b52029c10757 Mon Sep 17 00:00:00 2001 From: Justas Balcas Date: Fri, 2 Feb 2024 12:45:05 -0600 Subject: [PATCH] Install gunicorn for prometheus --- xrootd/xrootd-stageout-server/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xrootd/xrootd-stageout-server/Dockerfile b/xrootd/xrootd-stageout-server/Dockerfile index 153571e..1076811 100644 --- a/xrootd/xrootd-stageout-server/Dockerfile +++ b/xrootd/xrootd-stageout-server/Dockerfile @@ -21,7 +21,7 @@ COPY config/default/opt/xroot-mon.py /opt/xroot-mon.py COPY config/default/opt/http-server.py /opt/http-server.py # To track connections, we need pyasn lib and GeoIP database -RUN yum -y install gcc python3-devel && yum clean all +RUN yum -y install gcc python3-devel python3-gunicorn && yum clean all RUN pip3 install pyasn psutil RUN mkdir -p /opt/pyasn RUN pyasn_util_download.py --latestv46 --filename /opt/pyasn/GeoIPASNum.rib && \