├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── servercore_container_build.yaml ├── .gitignore ├── Dockerfile ├── Dockerfile-example ├── LICENSE ├── README.md └── entrypoint.ps1 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antgrutta/windows-runner-container/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antgrutta/windows-runner-container/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/servercore_container_build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antgrutta/windows-runner-container/HEAD/.github/workflows/servercore_container_build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Gitignore 2 | scratch.txt 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antgrutta/windows-runner-container/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antgrutta/windows-runner-container/HEAD/Dockerfile-example -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antgrutta/windows-runner-container/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antgrutta/windows-runner-container/HEAD/README.md -------------------------------------------------------------------------------- /entrypoint.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antgrutta/windows-runner-container/HEAD/entrypoint.ps1 --------------------------------------------------------------------------------