mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-18 16:22:33 +01:00
cee1e59860
This will prevent: ```bash # Docker Bench for Security v1.3.0 [WARN] 4.6 - Add HEALTHCHECK instruction to the container image [WARN] * No Healthcheck found: [docker-bench-security:latest] ``` Signed-off-by: will Farrell <will.farrell@gmail.com>
24 lines
565 B
Docker
24 lines
565 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 upgrade --no-cache && \
|
|
apk add --no-cache \
|
|
docker \
|
|
dumb-init && \
|
|
rm -rf /usr/bin/docker-* /usr/bin/dockerd && \
|
|
mkdir /usr/local/bin/tests
|
|
|
|
COPY ./*.sh /usr/local/bin/
|
|
|
|
COPY ./tests/*.sh /usr/local/bin/tests/
|
|
|
|
WORKDIR /usr/local/bin
|
|
|
|
HEALTHCHECK CMD exit 0
|
|
|
|
ENTRYPOINT [ "/usr/bin/dumb-init", "docker-bench-security.sh" ]
|
|
|