Adding detect_secrets support to Docker

This commit is contained in:
David Lladro
2019-06-27 15:27:19 -05:00
parent ea6d9c93fc
commit e273ae3123

View File

@@ -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"]