Skip to content

Commit

Permalink
Docker: fixed build error complaining about empty source dir when bui…
Browse files Browse the repository at this point in the history
…lding root version
  • Loading branch information
lkubb committed Oct 9, 2021
1 parent 78e236d commit 54e125f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -23,7 +23,7 @@ RUN mkdir -p /tmp/useradd && \
echo "${RUNAS}:x:${PUID}:${PGID}::/nonexistent:/sbin/nologin" >> /tmp/useradd/passwd && \
echo "${RUNAS}:!:::::::" >> /tmp/useradd/shadow && \
echo "${RUNAS}:x:${PGID}:" >> /tmp/useradd/group && \
echo "${RUNAS}:!::" >> /tmp/useradd/groupshadow; fi
echo "${RUNAS}:!::" >> /tmp/useradd/groupshadow; else touch /tmp/useradd/unused; fi

FROM scratch AS final
LABEL maintainer="Andrea Spacca <andrea.spacca@gmail.com>"
Expand Down

0 comments on commit 54e125f

Please sign in to comment.