├── .github └── workflows │ └── build.yml ├── README.md ├── clang ├── Dockerfile ├── install-clang.sh └── llvm.tar.xz ├── common └── install-cmake.sh ├── gcc └── Dockerfile └── test ├── CMakeLists.txt ├── build.sh └── main.cpp /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/docker/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/docker/HEAD/README.md -------------------------------------------------------------------------------- /clang/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/docker/HEAD/clang/Dockerfile -------------------------------------------------------------------------------- /clang/install-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/docker/HEAD/clang/install-clang.sh -------------------------------------------------------------------------------- /clang/llvm.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/docker/HEAD/clang/llvm.tar.xz -------------------------------------------------------------------------------- /common/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/docker/HEAD/common/install-cmake.sh -------------------------------------------------------------------------------- /gcc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/docker/HEAD/gcc/Dockerfile -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/docker/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foonathan/docker/HEAD/test/build.sh -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | std::cout << "Hello World!\n"; 6 | } 7 | 8 | --------------------------------------------------------------------------------