The `testImage` attribute is the name of the [Docker](https://docs.docker.com/get-started) image used to run the container responsible for testing the student's code.
The container runs with the following settings (options of `docker run`) :
-`--read-only`
- Mount the container's root filesystem as read only
-`--network none`
- Connect a container to a network without Internet
-`--memory 500M`
- Memory limit
-`--cpus 2.0`
- Number of CPUs
-`--user 1000:1000`
- Username or UID (format: <name|uid>[:<group|gid>])
Example of a [Dockerfile](https://github.com/01-edu/public/blob/master/js/tests/Dockerfile) and its [entrypoint](https://github.com/01-edu/public/blob/master/js/tests/entrypoint.sh).