summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
index 245aabf84..f0252025c 100644
--- a/README.md
+++ b/README.md
@@ -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