Codebase list certgraph / b8955da Dockerfile
b8955da

Tree @b8955da (Download .tar.gz)

Dockerfile @b8955daraw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]