diff --git a/Dockerfile.centos b/Dockerfile.centos new file mode 100644 index 0000000..e56d864 --- /dev/null +++ b/Dockerfile.centos @@ -0,0 +1,11 @@ +FROM centos + +RUN yum install -y docker net-tools audit procps-ng; yum clean all + +RUN mkdir /docker-bench-security + +COPY . /docker-bench-security + +WORKDIR /docker-bench-security + +ENTRYPOINT ["/bin/sh", "docker-bench-security.sh"]