Add simple Dockerfile

This commit is contained in:
maride 2020-06-09 14:03:27 +02:00
parent d16f36de52
commit b58017d4f7

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM golang:1.14
COPY . .
RUN go get github.com/prometheus/client_golang/prometheus
RUN go build -o afl-prom .
CMD [ "/afl-prom" ]