Codebase list certgraph / 716706c Dockerfile
716706c

Tree @716706c (Download .tar.gz)

Dockerfile @716706craw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]