mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-18 16:22:33 +01:00
f3d9b5cc2e
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
17 lines
325 B
Docker
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"]
|