From e43cadc373b84383868c3b907ad4aec93868ed9c Mon Sep 17 00:00:00 2001 From: Yudhishtran Elangovan <97242651+Yudhishtran@users.noreply.github.com> Date: Sun, 2 Nov 2025 13:02:59 +0530 Subject: [PATCH] Update Node.js version and entrypoint command --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ebf6a53ff8..b733822d75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:lts-alpine3.12 +FROM node:lts-alpine3.22 # Define a build argment that can be supplied when building the container # You can then do the following: @@ -34,5 +34,5 @@ USER cloudsploit # 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 []