Browse Source

Install prometheus_client in the Docker image as well (#325)

Install prometheus_client in the Docker image.
Ben Banfield-Zanin 3 years ago
parent
commit
55ea646931
2 changed files with 2 additions and 1 deletions
  1. 1 1
      Dockerfile
  2. 1 0
      changelog.d/325.misc

+ 1 - 1
Dockerfile

@@ -22,7 +22,7 @@ COPY --chown=sydent:sydent ["README.rst", "setup.cfg", "setup.py", "/sydent/"]
 
 # Install dependencies
 RUN cd /sydent \
-    && su sydent -c 'pip install --user --upgrade pip setuptools sentry-sdk' \
+    && su sydent -c 'pip install --user --upgrade pip setuptools sentry-sdk prometheus_client' \
     && su sydent -c 'pip install --user -e .' \
     && rm -rf /sydent/.cache \
     && find /sydent -name '*.pyc' -delete

+ 1 - 0
changelog.d/325.misc

@@ -0,0 +1 @@
+Install prometheus_client in the Docker image.