Codebase list certgraph / 7939506 Dockerfile
7939506

Tree @7939506 (Download .tar.gz)

Dockerfile @7939506raw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]