diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..59e0e8e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM golang:1.13 as build + +RUN go get github.com/BBVA/kapow +RUN CGO_ENABLED=0 GOOS=linux go install github.com/BBVA/kapow + +FROM alpine:latest +COPY --from=build /go/bin/kapow /usr/bin/kapow + +ENTRYPOINT /usr/bin/kapow