Codebase list certgraph / 1aac5f6 Dockerfile
1aac5f6

Tree @1aac5f6 (Download .tar.gz)

Dockerfile @1aac5f6raw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]