prometheus-dnssec-exporter/Dockerfile
Ask Bjørn Hansen 2ba4ca303e
All checks were successful
continuous-integration/drone Build is passing
Build with drone
2021-09-04 23:14:56 -07:00

9 lines
166 B
Docker

FROM golang:1.17-alpine
WORKDIR /app
COPY . ./
RUN go mod download
RUN go build -o /bin/prometheus-dnssec-exporter
ENTRYPOINT [ "/bin/prometheus-dnssec-exporter" ]