Codebase list certgraph / e9f37093-b8c8-412e-98a5-8db334065bcd/upstream Dockerfile
e9f37093-b8c8-412e-98a5-8db334065bcd/upstream

Tree @e9f37093-b8c8-412e-98a5-8db334065bcd/upstream (Download .tar.gz)

Dockerfile @e9f37093-b8c8-412e-98a5-8db334065bcd/upstreamraw · history · blame

FROM golang:alpine

RUN apk add --update git make

WORKDIR /src/certgraph
ADD . .

ENV CGO_ENABLED=0
RUN make install

ENTRYPOINT [ "certgraph" ]