Codebase list certgraph / 66fc50f Dockerfile
66fc50f

Tree @66fc50f (Download .tar.gz)

Dockerfile @66fc50fraw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]