Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 5c0d3c9

Browse files
authored
Fix default shell
1 parent 41e9f0a commit 5c0d3c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script-library/test/regression/alt.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN . /etc/os-release \
1414
&& if [ "${ID}" = "alpine" ] || [ "${ID_LIKE}" = "alpine" ]; then \
1515
addgroup -g 1001 the-borts && adduser -D -s /bin/bash -u 1001 -G the-borts ${USERNAME}; \
1616
else \
17-
groupadd --gid 1001 the-borts && useradd --uid 1001 --gid 1001 -m ${USERNAME}; \
17+
groupadd --gid 1001 the-borts && useradd -s /bin/bash --uid 1001 --gid 1001 -m ${USERNAME}; \
1818
fi
1919

2020
# Run non-default tests

0 commit comments

Comments
 (0)