summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
diff options
context:
space:
mode:
authorJonathan Holloway <jholloway@redhat.com>2017-09-26 16:53:05 -0500
committerJonathan Holloway <jholloway@redhat.com>2017-09-26 22:16:20 +0000
commit0c12155457af7ee0ddafd5311cac9a238fc5d00f (patch)
tree88c99d53aabc22ccef631608f867f04e4790a5f7 /docker/Dockerfile
parentb02e147e35ebec6da669fb125d51062b82f46af4 (diff)
docker: fix gdeploy install
* Dockerfile: fix gdeploy pkgname and add code coverage tools * README: update command examples Change-Id: I73617fbbde6aff34fec730601dcc6baec2b921fa Signed-off-by: Jonathan Holloway <jholloway@redhat.com>
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r--docker/Dockerfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 675de2192..400fcdeaf 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -4,7 +4,7 @@ MAINTAINER loadtheaccumulator@gmail.com
# install gdeploy first due to pip/rpm PyYAML conflict
RUN dnf install -y wget
RUN wget -q https://copr.fedorainfracloud.org/coprs/sac/gdeploy/repo/fedora-26/sac-gdeploy-fedora-26.repo -O /etc/yum.repos.d/gdeploy.repo
-RUN dnf install -y gdeploy-*
+RUN dnf install -y gdeploy*
# install glusto
RUN dnf install -y git
@@ -23,3 +23,7 @@ RUN cd /glusto-tests/glustolibs-misc; python setup.py install
# install dev extras
RUN dnf install -y pylint
RUN dnf install -y python-pep8
+
+# install code coverage extras
+RUN dnf install -y lcov
+RUN pip install gcovr