From ca03a37db6b6c7ce75c286453848d09d88c18926 Mon Sep 17 00:00:00 2001 From: Razvan Stoica Date: Tue, 16 Mar 2021 10:00:45 +0200 Subject: [PATCH] Remove duplicate Dockerfile --- distros/Dockerfile.alpine | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 distros/Dockerfile.alpine diff --git a/distros/Dockerfile.alpine b/distros/Dockerfile.alpine deleted file mode 100644 index 0ad1564..0000000 --- a/distros/Dockerfile.alpine +++ /dev/null @@ -1,25 +0,0 @@ -FROM alpine:3.12 - -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" - -# Switch to the HTTPS endpoint for the apk repositories -# https://github.com/gliderlabs/docker-alpine/issues/184 -RUN set -eux; \ - sed -i 's!http://dl-cdn.alpinelinux.org/!https://alpine.global.ssl.fastly.net/!g' /etc/apk/repositories && \ - apk add --no-cache \ - iproute2 \ - docker-cli \ - dumb-init - -COPY ./*.sh /usr/local/bin/ -COPY ./tests/*.sh /usr/local/bin/tests/ - -HEALTHCHECK CMD exit 0 - -WORKDIR /usr/local/bin - -ENTRYPOINT [ "/usr/bin/dumb-init", "docker-bench-security.sh" ] -CMD [""]