In order to run the CLI in a virtualized environment or in a cloud environment, you can use the following Dockerfile in order to build a Docker image:
FROM gcr.io/distroless/static:nonroot
ARG TARGETARCH=amd64
COPY ./utilacli-${TARGETARCH}-linux /utila
docs
USER nonroot:nonroot
ENTRYPOINT ["/utila"]