FROM alpine

RUN addgroup -g 2000 -S testgroup && adduser -u 2000 -S testuser -G testgroup

USER testuser

CMD /usr/bin/id
