docker-bench-security/Dockerfile
Thomas Sjögren f3d9b5cc2e Use distros/Dockerfile.alpine
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
2015-07-01 21:00:51 +02:00

17 lines
325 B
Docker

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