Skip to content

Instantly share code, notes, and snippets.

View ajinasokan's full-sized avatar
💻
Building Flutter apps

Ajin Asokan ajinasokan

💻
Building Flutter apps
View GitHub Profile
@HimbeersaftLP
HimbeersaftLP / Dockerfile
Last active May 27, 2022 13:25
grafana-mqtt-docker
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