mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-19 08:42:33 +01:00
18 lines
325 B
Text
18 lines
325 B
Text
|
# 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"]
|