mirror of
https://github.com/hikhvar/mqtt2prometheus.git
synced 2026-02-14 18:09:53 +00:00
10 lines
244 B
Docker
10 lines
244 B
Docker
FROM golang:1.15.2 as builder
|
|
|
|
COPY . /build/mqtt2prometheus
|
|
WORKDIR /build/mqtt2prometheus
|
|
RUN make static_build TARGET_FILE=/bin/mqtt2prometheus
|
|
|
|
FROM scratch
|
|
COPY --from=builder /bin/mqtt2prometheus /mqtt2prometheus
|
|
CMD ["/mqtt2prometheus"]
|