ceph_exporter/Dockerfile

46 lines
1.4 KiB
Docker
Raw Normal View History

FROM ubuntu:18.04 as builder
2016-01-06 19:07:02 +00:00
MAINTAINER Vaibhav Bhembre <vaibhav@digitalocean.com>
ARG TEST
ENV GOROOT /goroot
2016-01-06 19:07:02 +00:00
ENV GOPATH /go
ENV PATH $GOROOT/bin:$PATH
2016-07-26 03:19:26 +00:00
ENV APPLOC $GOPATH/src/github.com/digitalocean/ceph_exporter
2016-01-06 19:07:02 +00:00
RUN apt-get update && \
2018-05-10 03:04:07 +00:00
apt-get install -y apt-transport-https build-essential git curl wget
2018-05-10 03:04:07 +00:00
RUN wget -q -O- 'https://download.ceph.com/keys/release.asc' | apt-key add -
RUN echo "deb https://download.ceph.com/debian-nautilus bionic main" >> /etc/apt/sources.list
RUN apt-get update && \
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.13.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
RUN if [ -n "${TEST}" ]; then go test -v ./...; fi
RUN go build -o /bin/ceph_exporter
2019-10-01 17:12:02 +00:00
FROM ubuntu:18.04
MAINTAINER Vaibhav Bhembre <vaibhav@digitalocean.com>
RUN apt-get update && \
2019-10-01 17:12:02 +00:00
apt-get install -y apt-transport-https curl wget gnupg
2018-05-10 03:04:07 +00:00
RUN wget -q -O- 'https://download.ceph.com/keys/release.asc' | apt-key add -
RUN echo "deb https://download.ceph.com/debian-nautilus bionic main" >> /etc/apt/sources.list && \
apt-get update && \
apt-get install -y --force-yes librados2 librbd1 ceph-common && \
rm -rf /var/lib/apt/lists/*
COPY --from=builder /bin/ceph_exporter /bin/ceph_exporter
RUN chmod +x /bin/ceph_exporter
EXPOSE 9128
ENTRYPOINT ["/bin/ceph_exporter"]