-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created a new Dockerfile based on Alpine
- Loading branch information
Toni de la Fuente
committed
Mar 12, 2019
1 parent
fa1a3b8
commit bc9d4fe
Showing
1 changed file
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
FROM python | ||
MAINTAINER Steve Neuharth <steve@aethereal.io> | ||
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 [] |