mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-18 16:22:33 +01:00
9f92e46df8
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
13 lines
346 B
Text
13 lines
346 B
Text
# REPOSITORY https://github.com/docker/docker-bench-security
|
|
FROM opensuse/leap:latest
|
|
|
|
RUN zypper -n in audit docker iproute2 && \
|
|
mkdir /docker-bench-security && \
|
|
rm /usr/bin/awk && \
|
|
cp /usr/bin/gawk /usr/bin/awk
|
|
|
|
COPY . /docker-bench-security
|
|
|
|
WORKDIR /docker-bench-security
|
|
|
|
ENTRYPOINT ["/bin/bash", "docker-bench-security.sh"]
|