From ab1407217dde87e491825ad067a6371f409a8976 Mon Sep 17 00:00:00 2001 From: Toni de la Fuente Date: Fri, 9 Jul 2021 13:57:35 +0200 Subject: [PATCH] Enhanced Dockerfile with py3-pip --- util/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/Dockerfile b/util/Dockerfile index 87911e46..6fbed17c 100644 --- a/util/Dockerfile +++ b/util/Dockerfile @@ -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