From a9bb0123b2019ab071edb81d75a4fe2ffc9f56f7 Mon Sep 17 00:00:00 2001 From: Peter Date: Mon, 14 Sep 2015 12:50:06 +0200 Subject: [PATCH] #83 First instruction must be FROM See https://docs.docker.com/reference/builder/ Signed-off-by: lusitania --- distros/Dockerfile.centos | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distros/Dockerfile.centos b/distros/Dockerfile.centos index 81e2824..1fa0ea4 100644 --- a/distros/Dockerfile.centos +++ b/distros/Dockerfile.centos @@ -1,9 +1,9 @@ # REPOSITORY https://github.com/fatherlinux/docker-bench-security -MAINTAINER smccarty@redhat.com - FROM centos +MAINTAINER smccarty@redhat.com + RUN yum install -y docker net-tools audit procps-ng; yum clean all RUN mkdir /docker-bench-security