Codebase list certgraph / e3d6034 Dockerfile
e3d6034

Tree @e3d6034 (Download .tar.gz)

Dockerfile @e3d6034raw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]