distro specific example

Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
This commit is contained in:
Thomas Sjögren 2015-06-23 22:46:03 +02:00
parent a324c22e3c
commit 2a9d8a0da7

17
distros/Dockerfile.alpine Normal file
View file

@ -0,0 +1,17 @@
# REPOSITORY https://github.com/docker/docker-bench-security
MAINTAINER dockerbench.com
FROM alpine:3.1
RUN apk update && \
apk upgrade && \
apk --update add docker
RUN mkdir /docker-bench-security
COPY . /docker-bench-security
WORKDIR /docker-bench-security
ENTRYPOINT ["/bin/sh", "docker-bench-security.sh"]