mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-19 00:32:34 +01:00
562e38da7c
Signed-off-by: Maik Ellerbrock <opensource@frapsoft.com>
20 lines
582 B
Docker
20 lines
582 B
Docker
FROM alpine:3.5
|
|
|
|
LABEL org.label-schema.name="docker-bench-security" \
|
|
org.label-schema.url="https://dockerbench.com" \
|
|
org.label-schema.vcs-url="https://github.com/docker/docker-bench-security.git"
|
|
|
|
RUN \
|
|
apk add --no-cache \
|
|
docker \
|
|
dumb-init \
|
|
git && \
|
|
git clone https://github.com/docker/docker-bench-security.git /tmp/bench-security && \
|
|
cp /tmp/bench-security/*.sh /usr/local/bin && \
|
|
cp -R /tmp/bench-security/tests /usr/local/bin && \
|
|
rm -rf /tmp/*
|
|
|
|
WORKDIR /usr/local/bin
|
|
|
|
ENTRYPOINT [ "/usr/bin/dumb-init", "docker-bench-security.sh" ]
|
|
|