Codebase list certgraph / 91f89ed Dockerfile
91f89ed

Tree @91f89ed (Download .tar.gz)

Dockerfile @91f89edraw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]