Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 061e238

Browse files
committed
fix(docker/rootless): missing bash under alpine
1 parent c46d5cc commit 061e238

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

apps/server/Dockerfile.alpine.rootless

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ ENV GID=${GID}
1818

1919
# Install runtime dependencies and create user with specific UID/GID
2020
RUN apk add --no-cache dumb-init && \
21+
apk add --no-cache bash && \
2122
# Alpine uses addgroup/adduser (from busybox) instead of groupadd/useradd
2223
addgroup -g ${GID} ${USER} && \
2324
adduser -u ${UID} -G ${USER} -s /bin/sh -D -h /home/${USER} ${USER}

0 commit comments

Comments
 (0)