-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add resource tracking to ProcDump (#219)
* Initial check-point for restrack support * Restrack check-point * Check-point * check-point * check-point * check-point * check-point * Required updates for new images * Required updates for new images * build infra updates * ZeroMemory * remove restrack integration test since it fails in unprivileged containers * Add syslog * Fix enabling of syslog * Update license information and fix when symbol resolution fails * Fetch call stack in the entry rather than exit * Refactor * PR feedback * Add changelog entry * Remove stress-ng timing issue
- Loading branch information
1 parent
c57b95b
commit ec32a73
Showing
74 changed files
with
139,528 additions
and
654 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
FROM mcr.microsoft.com/cbl-mariner/base/core:2.0 | ||
|
||
# install all needed packages for builds | ||
RUN yum install -y ca-certificates \ | ||
git \ | ||
gdb \ | ||
zlib-devel \ | ||
gcc \ | ||
rpm-build \ | ||
make \ | ||
curl \ | ||
libcurl-devel \ | ||
libicu-devel \ | ||
libunwind-devel \ | ||
nmap \ | ||
wget \ | ||
clang \ | ||
glibc-devel \ | ||
kernel-headers-5.15.125.1-2.cm2.noarch \ | ||
binutils \ | ||
lsb-release \ | ||
cmake \ | ||
bpftool \ | ||
libbpf-devel | ||
|
||
# install JQ since it doesn't have a .rpm package | ||
RUN curl https://stedolan.github.io/jq/download/linux64/jq > /usr/bin/jq && chmod +x /usr/bin/jq | ||
|
||
# install .net core 6 for ESRP signing and integration tests | ||
RUN yum install -y dotnet-sdk-6.0 | ||
|
||
# Update packages to latest | ||
RUN yum update -y |
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
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.