Codebase list certgraph / e18ad30 Dockerfile
e18ad30

Tree @e18ad30 (Download .tar.gz)

Dockerfile @e18ad30raw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]