mirror of
https://github.com/docker/docker-bench-security.git
synced 2024-11-01 08:31:44 +01:00
f5542683c5
Signed-off-by: Karol Babioch <kbabioch@suse.de>
15 lines
326 B
Text
15 lines
326 B
Text
# REPOSITORY https://github.com/fatherlinux/docker-bench-security
|
|
|
|
FROM centos
|
|
|
|
MAINTAINER smccarty@redhat.com
|
|
|
|
RUN yum install -y docker iproute 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"]
|