Enhanced Dockerfile with py3-pip

This commit is contained in:
Toni de la Fuente
2021-07-09 13:57:35 +02:00
parent 265f494b0d
commit ab1407217d

View File

@@ -5,9 +5,9 @@ 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 jq file coreutils && \
apk --update --no-cache add python3 bash curl jq file coreutils py3-pip && \
pip3 install --upgrade pip && \
pip install awscli boto3 detect-secrets
pip3 install awscli boto3 detect-secrets
WORKDIR /prowler