Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
This commit is contained in:
Thomas Sjögren 2025-01-15 10:57:49 +00:00
parent ff26d67f25
commit 32a593d857
No known key found for this signature in database

View file

@ -5,9 +5,10 @@ LABEL \
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 iproute2 \
RUN apk add --no-cache bash \
docker-cli \
dumb-init \
iproute2 \
jq
COPY . /usr/local/bin/
@ -16,5 +17,5 @@ HEALTHCHECK CMD exit 0
WORKDIR /usr/local/bin
ENTRYPOINT [ "/usr/bin/dumb-init", "/bin/sh", "docker-bench-security.sh" ]
ENTRYPOINT [ "/usr/bin/dumb-init", "/bin/bash", "docker-bench-security.sh" ]
CMD [""]