diff --git a/Dockerfile b/Dockerfile index 0671b66..4393eb5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN apt install -yq libssl-dev \ libxtst6 \ gnupg \ supervisor \ - python3 python3-pip \ + python3 python3-pip python3-venv\ scrot python3-tk python3-dev \ libx11-6 libx11-dev libxext-dev libxtst6 \ libpng-dev libjpeg-dev libtiff-dev libfreetype6-dev \ @@ -27,7 +27,6 @@ RUN apt install -yq libssl-dev \ xvfb \ && apt-get clean -RUN pip3 install pyautogui pillow opencv-python RUN mkdir -p /usr/share/man/man1 && \ curl -fsSL https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor -o /etc/apt/trusted.gpg.d/adoptium.gpg && \ @@ -39,4 +38,8 @@ RUN java -version RUN curl https://portswigger.net/burp/releases/download \ -o burpsuite_community.jar -USER 1000 \ No newline at end of file +USER 1000 + + +RUN pytohn3 -m venv /home/default/.venv && bash -c "source /home/default/.venv/bin/activate && pip3 install pyautogui pillow opencv-python" +