Codebase list certgraph / 1045756 Dockerfile
1045756

Tree @1045756 (Download .tar.gz)

Dockerfile @1045756raw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]