Repository for the CMake exercise.
How to build an image
sudo docker build -t cmake-exercise-test-image .
How to run a image (with interactive mode)
sudo docker run -i -t cmake-exercise-test-image
How to mount the local directory to the docker container
```bash
sudo docker run -d -i -t --name exercise-cmake --mount type=bind,source="$(pwd)",target=/mnt/share ubuntu