Skip to content

Commit

Permalink
ci: install shadow-utils before other packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kofemann committed Aug 11, 2023
1 parent 4f7f781 commit ab7c3b1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/tar/src/main/container/Dockerfile
Expand Up @@ -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
Expand Down

0 comments on commit ab7c3b1

Please sign in to comment.