Write output files to a directory relative to Prowler @marcjay

Write output files to a directory relative to Prowler
This commit is contained in:
Toni de la Fuente
2020-05-21 18:06:46 +02:00
committed by GitHub
5 changed files with 24 additions and 7 deletions

View File

@@ -9,10 +9,12 @@ RUN addgroup -g ${USERID} ${USERNAME} && \
pip3 install --upgrade pip && \
pip install awscli ansi2html boto3 detect-secrets
ADD . /prowler
WORKDIR /prowler
RUN chown -R prowler /prowler/
COPY . ./
RUN chown -R prowler .
USER ${USERNAME}
ENTRYPOINT ["/prowler/prowler"]
ENTRYPOINT ["./prowler"]