Codebase list certgraph / 91cc54e Dockerfile
91cc54e

Tree @91cc54e (Download .tar.gz)

Dockerfile @91cc54eraw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]