Codebase list certgraph / d448f60c-0774-482d-97c0-a674e7978b89/upstream Dockerfile
d448f60c-0774-482d-97c0-a674e7978b89/upstream

Tree @d448f60c-0774-482d-97c0-a674e7978b89/upstream (Download .tar.gz)

Dockerfile @d448f60c-0774-482d-97c0-a674e7978b89/upstreamraw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]