AlgoSecure / Pollenisator

Collaborative pentest tool with highly customizable tools
GNU General Public License v3.0
71 stars 10 forks source link

"docker -t build pollenisator ." failed at step 49/51 #2

Closed pun-private closed 4 years ago

pun-private commented 4 years ago

Hi,

When trying to build the worker docker, it fails at step 49/51.

root@kali:/shared_data/Pollenisator/Pollenisator/worker# docker build -t pollenisator .
(...)
Step 48/51 : COPY config /home/Pollenisator/config
 ---> fb52d7c36b63
Step 49/51 : COPY ssl /home/Pollenisator/ssl
COPY failed: stat /var/lib/docker/tmp/docker-builder872076497/ssl: no such file or directory

Creating the folder "ssl" seems to fix this issue :

root@kali:/shared_data/Pollenisator/Pollenisator/worker# mkdir ssl
root@kali:/shared_data/Pollenisator/Pollenisator/worker# docker build -t pollenisator .
Step 49/51 : COPY ssl /home/Pollenisator/ssl
 ---> dba64d2bb861
Step 50/51 : RUN chmod +x /home/Pollenisator/startWorker.sh
 ---> Running in c4ac8623aeec
Removing intermediate container c4ac8623aeec
 ---> bffa7ddcf8fc
Step 51/51 : CMD ["/bin/bash", "-c", "./startWorker.sh"]
 ---> Running in 98a2336b1de4
Removing intermediate container 98a2336b1de4
 ---> 47f1c62affe8
Successfully built 47f1c62affe8
Successfully tagged pollenisator:latest
AlgoSecureAdmin commented 4 years ago

Thank you for your solution ! Fixed in commit ac604b7