mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-19 00:32:34 +01:00
21 lines
582 B
Text
21 lines
582 B
Text
|
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" ]
|
||
|
|