From 53dc65e49257a37aae9cadbf899476476e4a9e7d Mon Sep 17 00:00:00 2001 From: Quim Date: Fri, 8 Feb 2019 09:08:21 +0100 Subject: [PATCH] fix qualysapi library dependencies --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 33e7fab..64d75a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,12 +16,13 @@ COPY bin/ bin/ COPY deps/ deps/ COPY configs/frameworks_example.ini frameworks_example.ini +RUN python setup.py clean --all +RUN pip install -r requirements.txt + WORKDIR /opt/VulnWhisperer/deps/qualysapi RUN python setup.py install WORKDIR /opt/VulnWhisperer -RUN python setup.py clean --all -RUN pip install -r requirements.txt RUN python setup.py install