├── Dockerfile ├── LICENSE ├── README.md ├── noop └── noop.c /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanNash/docker_noop/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanNash/docker_noop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanNash/docker_noop/HEAD/README.md -------------------------------------------------------------------------------- /noop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanNash/docker_noop/HEAD/noop -------------------------------------------------------------------------------- /noop.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | exit(0); 5 | } 6 | --------------------------------------------------------------------------------