mirror of
https://github.com/docker/docker-bench-security.git
synced 2024-11-01 08:31:44 +01:00
641bf4e864
Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
13 lines
235 B
Docker
13 lines
235 B
Docker
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"]
|