1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# Docker Containers for Testing
> **Note** For production containers please visit: <http://github.com/cp2k/cp2k-containers>.
This directory hosts docker files for testing cp2k. They are mostly used by the
[cp2k-ci](https://github.com/cp2k/cp2k-ci) to check pull requests and populate the
[dashboard](https://dashboard.cp2k.org).
To run a test one simply has to build the image:
```shell
./spack_cache_start.sh
podman build --network=host --shm-size=1g -f Dockerfile.test_sdbg -t cp2k_test_sdbg ../../
```
To retrieve the cached report of an old image simply run it:
```shell
podman run cp2k_test_sdbg
```
|