Skip to content

Commit 5c6e0d8

Browse files
committed
remove experimental from docker file
1 parent 04a5a88 commit 5c6e0d8

File tree

3 files changed

+1
-14
lines changed

3 files changed

+1
-14
lines changed

Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ RUN wget https://github.com/GoogleCloudPlatform/terraformer/releases/download/0.
6767
COPY --from=build_env /app/bin/kics /app/bin/kics
6868
COPY --from=build_env /app/assets/queries /app/bin/assets/queries
6969
COPY --from=build_env /app/assets/libraries/* /app/bin/assets/libraries/
70-
COPY --from=build_env /app/assets/utils/* /app/bin/assets/utils/
7170

7271
WORKDIR /app/bin
7372

docs/commands.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Flags:
7979
accepts: all, results, errors, none
8080
example: if 'results' is set, only engine errors will make KICS exit code different from 0 (default "none")
8181
-i, --include-queries strings include queries by providing the query ID
82-
cannot be provided with query exclusion flags
82+
c[Dockerfile](..%2FDockerfile)annot be provided with query exclusion flags
8383
can be provided multiple times or as a comma separated string
8484
example: 'e69890e6-fce5-461d-98ad-cb98318dfc96,4728cd65-a20c-49da-8b31-9c08b423e4db'
8585
--input-data string path to query input data files

internal/console/helpers/helpers.go

-12
Original file line numberDiff line numberDiff line change
@@ -140,18 +140,6 @@ func GetDefaultQueryPath(queriesPath string) (string, error) {
140140
return queriesDirectory, nil
141141
}
142142

143-
// GetDefaultExperimentalPath returns the default Experimental path
144-
func GetDefaultExperimentalPath(experimentalQueriesPath string) (string, error) {
145-
log.Debug().Msg("helpers.GetDefaultExperimentalPath()")
146-
experimentalQueriesFile, err := GetFullPath(experimentalQueriesPath)
147-
if err != nil {
148-
return "", err
149-
}
150-
151-
log.Debug().Msgf("Experimental Queries found in %s", experimentalQueriesFile)
152-
return experimentalQueriesFile, nil
153-
}
154-
155143
// GetFulPath returns the full path of a partial path used for queries or experimental queries json path
156144
func GetFullPath(partialPath string) (string, error) {
157145
executableDirPath := GetExecutableDirectory()

0 commit comments

Comments
 (0)