From bc9d4fe762edd3682663df1a01757e70e0152400 Mon Sep 17 00:00:00 2001 From: Toni de la Fuente Date: Mon, 11 Mar 2019 23:59:02 -0400 Subject: [PATCH] Created a new Dockerfile based on Alpine --- util/Dockerfile | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/util/Dockerfile b/util/Dockerfile index 8b918078..7fd854aa 100644 --- a/util/Dockerfile +++ b/util/Dockerfile @@ -1,4 +1,9 @@ -FROM python -MAINTAINER Steve Neuharth -RUN apt-get update && apt-get upgrade -y && pip install awscli ansi2html -ADD prowler* /usr/local/bin/ +FROM alpine:3.9 + +RUN apk --update --no-cache add python3 bash curl git +RUN pip3 install --upgrade pip +RUN pip install awscli ansi2html boto3 +RUN git clone https://github.com/toniblyx/prowler/ + +ENTRYPOINT ["/prowler/prowler"] +CMD [] \ No newline at end of file