mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-06-12 18:03:46 +00:00
Add more remediation stuff
This commit is contained in:
parent
c8721c90fa
commit
f31e60c379
6 changed files with 758 additions and 0 deletions
distros
19
distros/Dockerfile.alpine
Normal file
19
distros/Dockerfile.alpine
Normal file
|
@ -0,0 +1,19 @@
|
|||
FROM alpine:3.13
|
||||
|
||||
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 iproute2 \
|
||||
docker-cli \
|
||||
dumb-init
|
||||
|
||||
COPY . /usr/local/bin/
|
||||
|
||||
HEALTHCHECK CMD exit 0
|
||||
|
||||
WORKDIR /usr/local/bin
|
||||
|
||||
ENTRYPOINT [ "/usr/bin/dumb-init", "docker-bench-security.sh" ]
|
||||
CMD [""]
|
Loading…
Add table
Add a link
Reference in a new issue