docker-bench-security/Dockerfile
Thomas Sjögren ccd574bf7b alpine 3.1 uses docker 1.4
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
2015-07-25 14:13:21 +02:00

17 lines
325 B
Docker

# REPOSITORY https://github.com/docker/docker-bench-security
FROM alpine:3.2
MAINTAINER dockerbench.com
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"]