From 2833938afc655a8009edd0aad6a9b2e6b47a018e Mon Sep 17 00:00:00 2001 From: Thomas Ilsche Date: Tue, 21 Nov 2023 15:15:18 +0100 Subject: [PATCH] update metricq --- Dockerfile | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c6f286d..44c015b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/metricq/metricq-python:v4.2 AS BUILDER +FROM ghcr.io/metricq/metricq-python:v5.3 AS BUILDER USER root RUN apt-get update \ @@ -15,7 +15,7 @@ WORKDIR /home/metricq/metricq_source_sysinfo RUN pip install --user . -FROM ghcr.io/metricq/metricq-python:v4.2 +FROM ghcr.io/metricq/metricq-python:v5.3 COPY --from=BUILDER --chown=metricq:metricq /home/metricq/.local /home/metricq/.local diff --git a/setup.py b/setup.py index b566adc..fbeabd3 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ install_requires=[ "click", "click_log", - "metricq ~= 5.0", + "metricq ~= 5.3", "psutil", ], use_scm_version=True,