Codebase list certgraph / 2997832 Dockerfile
2997832

Tree @2997832 (Download .tar.gz)

Dockerfile @2997832raw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]