diff --git a/apps/server/Dockerfile.alpine.rootless b/apps/server/Dockerfile.alpine.rootless index e8bd0461f..45fe71156 100644 --- a/apps/server/Dockerfile.alpine.rootless +++ b/apps/server/Dockerfile.alpine.rootless @@ -18,6 +18,7 @@ ENV GID=${GID} # Install runtime dependencies and create user with specific UID/GID RUN apk add --no-cache dumb-init && \ + apk add --no-cache bash && \ # Alpine uses addgroup/adduser (from busybox) instead of groupadd/useradd addgroup -g ${GID} ${USER} && \ adduser -u ${UID} -G ${USER} -s /bin/sh -D -h /home/${USER} ${USER}