FROM alpine:3.7 LABEL name="aaf-sms-quorumclient" LABEL version=4.0.0 LABEL maintainer="Girish Havaldar " RUN addgroup aaf && adduser -H -D -g "" -G aaf aaf && \ mkdir -p /quorumclient/auth && \ mkdir -p /quorumclient/certs && \ chown -R aaf:aaf /quorumclient ADD quorumclient /quorumclient/bin/quorumclient RUN chmod +x /quorumclient/bin/quorumclient USER aaf WORKDIR /quorumclient ENTRYPOINT ["/quorumclient/bin/quorumclient"]