From ddd758d6dd4e2d1631b96558a7c6d78416861988 Mon Sep 17 00:00:00 2001 From: Steve Milner Date: Wed, 15 Nov 2017 11:12:55 -0500 Subject: [PATCH 1/2] Dockerfile: Update version and add verification Signed-off-by: Steve Milner --- Dockerfile | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0e604b9..0b163e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM registry.fedoraproject.org/fedora:25 +FROM registry.fedoraproject.org/fedora:27 MAINTAINER Jonathan Lebon # NB: we install libyaml-devel so that we can use # CSafeLoader in PyYAML (see related comment in the parser) -RUN dnf install -y \ +RUN dnf install --setopt=tsflags=nodocs -y \ git \ gcc \ sudo \ @@ -15,7 +15,18 @@ RUN dnf install -y \ python3-pip \ libyaml-devel \ nmap-ncat && \ - dnf clean all + dnf clean all && \ + rpm -V \ + git \ + gcc \ + sudo \ + docker \ + findutils \ + python3-devel \ + redhat-rpm-config \ + python3-pip \ + libyaml-devel \ + nmap-ncat # There's a tricky bit here. We mount $PWD at $PWD in the # container so that when we do the nested docker run in the From a218cc497a885e1bf497a768e64a8c07a3ca33be Mon Sep 17 00:00:00 2001 From: Steve Milner Date: Wed, 15 Nov 2017 11:23:08 -0500 Subject: [PATCH 2/2] fixup! Dockerfile: Update version and add verification --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0b163e5..05d844f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Jonathan Lebon # NB: we install libyaml-devel so that we can use # CSafeLoader in PyYAML (see related comment in the parser) -RUN dnf install --setopt=tsflags=nodocs -y \ +RUN dnf install -y \ git \ gcc \ sudo \