Codebase list certgraph / 212f9008-4232-4b23-810d-cf411635558e/upstream/20220513 Dockerfile
212f9008-4232-4b23-810d-cf411635558e/upstream/20220513

Tree @212f9008-4232-4b23-810d-cf411635558e/upstream/20220513 (Download .tar.gz)

Dockerfile @212f9008-4232-4b23-810d-cf411635558e/upstream/20220513raw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]