First version of the CIS Docker Benchmark v1.0.0

This commit is contained in:
Diogo Monica 2015-05-10 21:08:28 -07:00
parent 487307834f
commit 18d5a13240
13 changed files with 1545 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM gliderlabs/alpine:3.1
RUN apk --update add docker
RUN mkdir /docker_security_benchmark
COPY . /docker_security_benchmark
WORKDIR /docker_security_benchmark
ENTRYPOINT ["/bin/sh", "docker_security_benchmark.sh"]