diff --git a/README.md b/README.md index c8ee0050..db579438 100644 --- a/README.md +++ b/README.md @@ -61,10 +61,10 @@ This script has been written in bash using AWS-CLI and it works in Linux and OSX - Make sure the latest version of AWS-CLI is installed on your workstation, and other components needed, with Python pip already installed: ```sh - pip install awscli ansi2html detect-secrets + pip install awscli detect-secrets ``` - AWS-CLI can be also installed it using "brew", "apt", "yum" or manually from , but `ansi2html` and `detect-secrets` has to be installed using `pip`. You will need to install `jq` to get more accuracy in some checks. + AWS-CLI can be also installed it using "brew", "apt", "yum" or manually from , but `detect-secrets` has to be installed using `pip`. You will need to install `jq` to get more accuracy in some checks. - Make sure jq is installed (example below with "apt" but use a valid package manager for your OS): diff --git a/util/Dockerfile b/util/Dockerfile index c6797518..8e8e71a1 100644 --- a/util/Dockerfile +++ b/util/Dockerfile @@ -7,7 +7,7 @@ RUN addgroup -g ${USERID} ${USERNAME} && \ adduser -s /bin/sh -G ${USERNAME} -D -u ${USERID} ${USERNAME} && \ apk --update --no-cache add python3 bash curl jq file && \ pip3 install --upgrade pip && \ - pip install awscli ansi2html boto3 detect-secrets + pip install awscli boto3 detect-secrets WORKDIR /prowler