This command builds a docker image with the code of this repository and runs the repository's tests
./build_docker.sh my_app
docker run -t my_app ./run_tests.sh
This example runs a single test with the name "test_add"
./build_docker.sh my_app
docker run -t my_app ./run_tests.sh test_add