From ab7c3b1a4e281f0fe236f838fcb018ae9cc7ef57 Mon Sep 17 00:00:00 2001 From: Tigran Mkrtchyan Date: Fri, 11 Aug 2023 22:55:20 +0200 Subject: [PATCH] ci: install shadow-utils before other packages --- packages/tar/src/main/container/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/tar/src/main/container/Dockerfile b/packages/tar/src/main/container/Dockerfile index 47c4fa518a1..45c223ce82a 100644 --- a/packages/tar/src/main/container/Dockerfile +++ b/packages/tar/src/main/container/Dockerfile @@ -4,8 +4,11 @@ FROM almalinux:9-minimal ENV DCACHE_INSTALL_DIR=/opt/dcache +# Neede by groupadd and useradd +RUN microdnf -y install shadow-utils + # Add JRE -RUN microdnf -y install shadow-utils java-17-openjdk-headless openssh-clients +RUN microdnf -y install java-17-openjdk-headless openssh-clients # Run dCache as user 'dcache' RUN groupadd dcache && useradd -r -g dcache dcache