Codebase list certgraph / ad2760b Dockerfile
ad2760b

Tree @ad2760b (Download .tar.gz)

Dockerfile @ad2760braw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]