Closed thespad closed 2 years ago
https://github.com/mozilla/ssh_scan/commit/4efb5db276df6f2a2bded8a9c2d13d95b821519d reverted changes to the Dockerfile made in https://github.com/mozilla/ssh_scan/pull/525 (removed the entrypoint) but didn't update the README to reflect this.
Either the entrypoint needs to be added back to the Dockerfile or the README needs to be updated to once again include /app/bin/ssh_scan in the docker commandline.
/app/bin/ssh_scan
With the current Dockerfile, it not working like this anymore:
docker run -it mozilla/ssh_scan -t sshscan.rubidus.com
This is what works:
docker run -it mozilla/ssh_scan /app/bin/ssh_scan -t sshscan.rubidus.com
https://github.com/mozilla/ssh_scan/commit/4efb5db276df6f2a2bded8a9c2d13d95b821519d reverted changes to the Dockerfile made in https://github.com/mozilla/ssh_scan/pull/525 (removed the entrypoint) but didn't update the README to reflect this.
Either the entrypoint needs to be added back to the Dockerfile or the README needs to be updated to once again include
/app/bin/ssh_scan
in the docker commandline.