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