e2e: Expand `useradd`'s `-m` otion into `--create-home`

... for improved readability

Signed-off-by: Ian Campbell <ijc@docker.com>
This commit is contained in:
Ian Campbell 2019-03-11 14:12:17 +00:00
parent 5de2d9e8a9
commit e854a9cf96
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
FROM docker:test-dind FROM docker:test-dind
RUN apk --no-cache add shadow openssh-server && \ RUN apk --no-cache add shadow openssh-server && \
groupadd -f docker && \ groupadd -f docker && \
useradd -m --shell /bin/sh penguin && \ useradd --create-home --shell /bin/sh penguin && \
usermod -aG docker penguin && \ usermod -aG docker penguin && \
usermod -p $(head -c32 /dev/urandom | base64) penguin && \ usermod -p $(head -c32 /dev/urandom | base64) penguin && \
ssh-keygen -A ssh-keygen -A