Codebase list certgraph / 811fbc1 Dockerfile
811fbc1

Tree @811fbc1 (Download .tar.gz)

Dockerfile @811fbc1raw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]