Build with drone
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2021-09-04 23:14:56 -07:00
parent caa7d89b2d
commit 2ba4ca303e
2 changed files with 27 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
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" ]