From 2dca3786f559c5e1bd937280f65ee14137656684 Mon Sep 17 00:00:00 2001 From: Travis Gockel Date: Thu, 1 Mar 2018 21:48:18 -0700 Subject: [PATCH] build: Adds lcov to Ubuntu 17.10 and 18.04 Docker environments. --- config/docker/ubuntu-17.10/Dockerfile | 4 +++- config/docker/ubuntu-18.04/Dockerfile | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/config/docker/ubuntu-17.10/Dockerfile b/config/docker/ubuntu-17.10/Dockerfile index 6610beb..3ecb3b1 100644 --- a/config/docker/ubuntu-17.10/Dockerfile +++ b/config/docker/ubuntu-17.10/Dockerfile @@ -6,11 +6,13 @@ RUN apt-get install --yes software-properties-common RUN add-apt-repository --yes ppa:ubuntu-toolchain-r/test RUN apt-get update -RUN apt-get install --yes \ +RUN apt-get update \ + && apt-get install --yes \ cmake \ grep \ g++-7 \ ivy \ + lcov \ libgtest-dev \ libzookeeper-mt-dev \ ninja-build diff --git a/config/docker/ubuntu-18.04/Dockerfile b/config/docker/ubuntu-18.04/Dockerfile index 0283d18..3ce9bf6 100644 --- a/config/docker/ubuntu-18.04/Dockerfile +++ b/config/docker/ubuntu-18.04/Dockerfile @@ -1,13 +1,14 @@ FROM ubuntu:18.04 MAINTAINER Travis Gockel -RUN apt-get update -RUN apt-get install --yes \ +RUN apt-get update \ + && apt-get install --yes \ cmake \ grep \ g++-7 \ ninja-build \ ivy \ + lcov \ libgtest-dev \ libzookeeper-mt-dev