mirror of
https://github.com/sberk42/fritzbox_exporter.git
synced 2026-05-20 00:07:28 +00:00
13 lines
215 B
Docker
13 lines
215 B
Docker
FROM golang:1.8-alpine
|
|
|
|
ADD . $GOPATH/src/github.com/ndecker/fritzbox_exporter
|
|
|
|
RUN apk add --no-cache git
|
|
RUN go get -v github.com/ndecker/fritzbox_exporter
|
|
|
|
EXPOSE 9133
|
|
|
|
ENTRYPOINT ["fritzbox_exporter"]
|
|
CMD [""]
|
|
|