Fix invocation of addgroup and adduser

Hopefully really this time
This commit is contained in:
Salt 2022-06-14 14:20:21 -05:00
parent 07c8bfd165
commit 8d2c901978
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ ARG GROUP
# Build the thing up
RUN apk add bash curl findutils rsync screen "${JRE_VERSION}"
RUN addgroup -g "${GID}" "${USER}" && \
adduser -h /minecraft -s /bin/sh -G "${GROUP}" -D -H -u "${UID}"
RUN addgroup -g "${GID}" "${GROUP}" && \
adduser -h /minecraft -s /bin/sh -D -H -u "${UID}" -G "${GROUP}" "${USER}"
WORKDIR /minecraft
COPY --from=build /minecraft .
USER $USER