diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -70,6 +70,14 @@ bazel build runsc sudo cp ./bazel-bin/runsc/linux_amd64_pure_stripped/runsc /usr/local/bin ``` +If you don't want to install bazel on your system, you can build runsc in a +Docker container: + +``` +make runsc +sudo cp ./bazel-bin/runsc/linux_amd64_pure_stripped/runsc /usr/local/bin +``` + ### Testing The test suite can be run with Bazel: @@ -78,6 +86,13 @@ The test suite can be run with Bazel: bazel test ... ``` +or in a Docker container: + +``` +make unit-tests +make tests +``` + ### Using remote execution If you have a [Remote Build Execution][rbe] environment, you can use it to speed |