Skip to content

Commit

Permalink
Adding detect_secrets support to Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
nomex committed Jun 27, 2019
1 parent ea6d9c9 commit e273ae3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions util/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ ARG USERID=34000

RUN addgroup -g ${USERID} ${USERNAME} && \
adduser -s /bin/sh -G ${USERNAME} -D -u ${USERID} ${USERNAME} && \
apk --update --no-cache add python3 bash curl git jq && \
apk --update --no-cache add python3 bash curl git jq file && \
pip3 install --upgrade pip && \
pip install awscli ansi2html boto3 &&\
pip install awscli ansi2html boto3 detect-secrets &&\
git clone https://github.com/toniblyx/prowler/
chown -R prowler /prowler/

USER ${USERNAME}

ENTRYPOINT ["/prowler/prowler"]
ENTRYPOINT ["/prowler/prowler"]

0 comments on commit e273ae3

Please sign in to comment.