Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/commands/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const (
containerVolumeFlag = "-v"
containerNameFlag = "--name"
containerRemove = "--rm"
containerImage = "checkmarx/kics:v2.1.3"
containerImage = "ruigomes99/kics:latest"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using the latest tag for the Docker image may lead to unpredictable behavior as the latest version can change over time. It's recommended to use a specific version tag to ensure consistent and repeatable builds.

containerScan = "scan"
containerScanPathFlag = "-p"
containerScanPath = "/path"
Expand Down
2 changes: 1 addition & 1 deletion internal/commands/util/remediation.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const (
filesContainerVolume = ":/files"
resultsContainerLocation = "/kics/"
containerRemove = "--rm"
containerImage = "checkmarx/kics:v2.1.3"
containerImage = "ruigomes99/kics:latest"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using the latest tag for Docker images can lead to unpredictable behavior as it will always pull the most recent version, which might not be stable or tested. It's recommended to use a specific version tag to ensure consistency and reliability of the Docker image across different environments.

containerNameFlag = "--name"
remediateCommand = "remediate"
resultsFlag = "--results"
Expand Down
Loading