Codebase list certgraph / 4195b2f Dockerfile
4195b2f

Tree @4195b2f (Download .tar.gz)

Dockerfile @4195b2fraw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]