You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
215 B
12 lines
215 B
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 [""]
|
|
|
|
|