docker-bench-security/distros/Dockerfile.alpine
Thomas Sjögren cbb351bbf3 FROM must be the first instruction
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
2015-07-01 20:59:09 +02:00

17 lines
325 B
Text

# 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"]