This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:alpine as plugin-builder | |
RUN apk add --no-cache yarn git | |
RUN git clone https://github.com/magefile/mage --depth=1 | |
RUN git clone https://github.com/grafana/mqtt-datasource.git --depth=1 | |
RUN cd mage && go run bootstrap.go | |
RUN cd mqtt-datasource && yarn install && yarn build |