-
Notifications
You must be signed in to change notification settings - Fork 5
adding kics realtime scanner support using containers platform #401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
3d65160
adding kics realtime scanner support using containers platform
tiagobcx ed8066a
adding kics realtime scanner support using containers platform
tiagobcx a3905ce
linter fix
tiagobcx 48e5915
linter fix
tiagobcx 85ba0a6
removing defer
tiagobcx 8e8d074
fix unit tests
tiagobcx 8fb8ce5
adding missing message in debug
tiagobcx d3e499a
adding query_url
tiagobcx 31efec2
fixing linter
tiagobcx 63659ff
merge+auto-remove
tiagobcx 045dfd8
fixing flags message
tiagobcx 426b79d
fixing linter
tiagobcx c58f960
adding kill listener + better error handling
tiagobcx 0e2d093
fixing linter
tiagobcx 079fb9f
main code cleanup
tiagobcx 4343ba0
error message on invalid files
tiagobcx f4074d2
error message on invalid files
tiagobcx 905f9dd
merge main
tiagobcx eb17e42
improving coverage after merge with main
tiagobcx 4195e1b
fixing comments
tiagobcx 0888785
fixing linter
tiagobcx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| FROM openjdk:11.0.1-jre-slim-stretch | ||
|
|
||
| ARG webwolf_version=v8.0.0-SNAPSHOT | ||
|
|
||
| RUN \ | ||
| apt-get update && apt-get install && \ | ||
| useradd --home-dir /home/webwolf --create-home -U webwolf | ||
|
|
||
| USER webwolf | ||
| COPY target/webwolf-${webwolf_version}.jar /home/webwolf/webwolf.jar | ||
| COPY start-webwolf.sh /home/webwolf | ||
|
|
||
| EXPOSE 9090 | ||
|
|
||
| ENTRYPOINT ["/home/webwolf/start-webwolf.sh"] | ||
| CMD ["--server.port=9090", "--server.address=0.0.0.0"] |
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.