Codebase list certgraph / upstream/20200803 Dockerfile
upstream/20200803

Tree @upstream/20200803 (Download .tar.gz)

Dockerfile @upstream/20200803raw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]