You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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
The Dockerfiles in this repo (located under the `.devcontainer` directory) are the same Dockerfiles that are used on the backend build systems when a PR is built as part of the PR checks. This provides an easy and convenient way to ensure that any changes being made can be built using the same backend infrastructure.
3
3
4
-
There are two Dockerfiles available:
4
+
There are three Dockerfiles available:
5
5
6
6
-`Dockerfile_Ubuntu` (default)
7
7
-`Dockerfile_Rocky`
8
+
-`Dockerfile_AzureLinux`
8
9
9
10
There are two primary ways to build using containers:
10
11
@@ -16,25 +17,22 @@ For more information about VS Code Dev Containers please see - https://code.visu
16
17
17
18
To build inside the container:
18
19
```sh
20
+
mkdir build
21
+
cd build
22
+
cmake ..
19
23
make
20
-
make install
21
24
```
22
25
# Local Builds
23
26
## Prerequisites
24
-
- clang v10+
25
-
- gcc v10+
26
-
- zlib
27
-
- cmake 3.10+
28
-
29
27
### Ubuntu
30
28
```
31
29
sudo apt update
32
-
sudo apt -y install gcc make clang gdb zlib1g-dev cmake
0 commit comments