diff --git a/Dockerfile b/Dockerfile index 5481cea8..23938c5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,8 @@ RUN node install.js FROM base AS app -RUN useradd -ms /bin/bash node +RUN addgroup -g 1000 node \ + && adduser -u 1000 -G node -s /bin/sh -D node LABEL com.github.actions.name="Conventional Commit Lint" \ com.github.actions.description="commitlint your PRs with Conventional style" \