-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: generate seccomp profile within pipeline
Signed-off-by: Alessio Greggi <ale_grey_91@hotmail.it>
- Loading branch information
Showing
9 changed files
with
541 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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 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 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,15 @@ | ||
# replacing capsule with harpoon Docker image, | ||
# (importing only the capsule binary), | ||
# so we can trace syscalls. | ||
FROM alegrey91/harpoon:v0.9.4 | ||
WORKDIR / | ||
COPY --from=localhost/capsule:latest /manager . | ||
|
||
ENTRYPOINT ["/harpoon", \ | ||
"capture", \ | ||
"-f", "main.main", \ | ||
"-E", "NAMESPACE=capsule-system", \ | ||
"-i", "2", \ | ||
"-c", "-e", \ | ||
"-S", "-D", "/tmp/results/", \ | ||
"--", "/manager"] |
This file contains 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 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 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.