Codebase list certgraph / d001b78 Dockerfile
d001b78

Tree @d001b78 (Download .tar.gz)

Dockerfile @d001b78raw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]