nautilus: fix docker build

This commit is contained in:
Alex Marangone 2019-10-01 10:12:02 -07:00
parent 4c3ae21771
commit c0e98c0756
1 changed files with 2 additions and 2 deletions

View File

@ -25,11 +25,11 @@ RUN go get -d && \
go build -o /bin/ceph_exporter
FROM ubuntu:16.04
FROM ubuntu:18.04
MAINTAINER Vaibhav Bhembre <vaibhav@digitalocean.com>
RUN apt-get update && \
apt-get install -y apt-transport-https curl wget
apt-get install -y apt-transport-https curl wget gnupg
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 && \