Dockerfile

In order to run the CLI in a virtualized environment or in a cloud environment (e.g. GCP Cloud Run), 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

USER nonroot:nonroot

ENTRYPOINT ["/utila"]