From a259571cb0a213fdbeae65867b95abb959b427aa Mon Sep 17 00:00:00 2001 From: David Lladro Date: Thu, 4 Jul 2019 08:38:25 +0200 Subject: [PATCH] Fixing missing && --- util/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/Dockerfile b/util/Dockerfile index 98d049f1..116bc1f4 100644 --- a/util/Dockerfile +++ b/util/Dockerfile @@ -8,7 +8,7 @@ RUN addgroup -g ${USERID} ${USERNAME} && \ apk --update --no-cache add python3 bash curl git jq file && \ pip3 install --upgrade pip && \ pip install awscli ansi2html boto3 detect-secrets &&\ - git clone https://github.com/toniblyx/prowler/ + git clone https://github.com/toniblyx/prowler/ &&\ chown -R prowler /prowler/ USER ${USERNAME}