ceph_exporter/Dockerfile

28 lines
740 B
Docker
Raw Normal View History

2016-01-06 19:07:02 +00:00
FROM ubuntu:14.04
MAINTAINER Vaibhav Bhembre <vaibhav@digitalocean.com>
ENV GOROOT /goroot
2016-01-06 19:07:02 +00:00
ENV GOPATH /go
ENV PATH $GOROOT/bin:$PATH
2016-07-14 05:01:19 +00:00
ENV APPLOC $GOPATH/src/github.com/AcalephStorage/ceph_exporter
2016-01-06 19:07:02 +00:00
2016-07-14 05:01:19 +00:00
RUN apt-get update && apt-get install -y apt-transport-https
RUN echo "deb https://download.ceph.com/debian-jewel trusty main" >> /etc/apt/sources.list
2016-07-14 05:01:19 +00:00
RUN apt-get install -y build-essential git curl
RUN apt-get install -y --force-yes librados-dev librbd-dev
2016-01-06 19:07:02 +00:00
RUN \
mkdir -p /goroot && \
curl https://storage.googleapis.com/golang/go1.5.2.linux-amd64.tar.gz | tar xvzf - -C /goroot --strip-components=1
ADD . $APPLOC
2016-01-06 19:07:02 +00:00
WORKDIR $APPLOC
RUN go get -d && \
go build -o /bin/ceph_exporter
2016-01-06 19:07:02 +00:00
EXPOSE 9128
ENTRYPOINT ["/bin/ceph_exporter"]