From e4549a11048f26119779b036f5a040f37762832e Mon Sep 17 00:00:00 2001 From: Marie Backman Date: Wed, 19 Feb 2025 13:26:22 -0500 Subject: [PATCH] Bump post-processing agent version in Dockerfile.autoreducer --- Dockerfile.autoreducer | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.autoreducer b/Dockerfile.autoreducer index ab023374..c28b60a5 100644 --- a/Dockerfile.autoreducer +++ b/Dockerfile.autoreducer @@ -9,8 +9,8 @@ RUN dnf install -y procps-ng python3-numpy # pgrep is used for health check, num RUN dnf install -y vim # rpm needs to special groups first -RUN groupadd snswheel -RUN useradd snsdata -G snswheel +RUN getent group users || groupadd users +RUN useradd snsdata -G users # put the developer configuration file in place RUN mkdir -p /etc/autoreduce/ @@ -19,7 +19,7 @@ ARG CONFIG_FILE=tests/configuration/post_process_consumer.conf COPY ${CONFIG_FILE} /etc/autoreduce/post_processing.conf # install postprocessing -RUN dnf install -y https://github.com/neutrons/post_processing_agent/releases/download/v3.4.0/postprocessing-3.4.0-1.el9.noarch.rpm +RUN dnf install -y https://github.com/neutrons/post_processing_agent/releases/download/v3.4.1/postprocessing-3.4.1-1.el9.noarch.rpm # install the fake test data ARG DATA_TARBALL=/tmp/SNSdata.tar.gz