From 54370d7c39f9da3954766781730ff2a616a7dfff Mon Sep 17 00:00:00 2001 From: JD Osterman Date: Thu, 7 Sep 2023 15:53:58 -0400 Subject: [PATCH] Update Dockerfile DOCKERFILE LINE 28 ENTRYPOINT ["cloudsploitscan"] includes TYPO ... should be ["cloudsploit-scan"] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 172029195c..5de252ce50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,5 +25,5 @@ ENV PATH "$PATH:/var/scan/node_modules/.bin" # command line arguments to the run command to control how this executes. # Thus, you can use the parameters that you would normally give to index.js # when running in a container. -ENTRYPOINT ["cloudsploitscan"] +ENTRYPOINT ["cloudsploit-scan"] CMD []