Unverified Commit 473fbefc by Anton Kochkov Committed by GitHub

Add `podman` instructions to the tests building (#239)

parent 14d9fe62
......@@ -6,7 +6,7 @@ The provided dockerfile should be used for the build process.
## Prerequisites
- Have Docker installed on your system
- Have Docker or Podman installed on your system
## Build commands
......@@ -15,4 +15,8 @@ Inside this directory run the following commands:
docker build -t cross_compiling .
docker run --rm -v $(pwd)/build:/home/cwe/artificial_samples/build cross_compiling sudo python3 -m SCons
```
If instead of Docker you use Podman, it's necessary to add also the `--security-opt label=disable` for mounting the volume:
```shell
podman build -t cross_compiling .
podman run --rm -v $(pwd)/build:/home/cwe/artificial_samples/build --security-opt label=disable cross_compiling sudo python3 -m SCons
```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment