├── .github └── workflows │ └── build.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── New-HostProcessBaseImage.ps1 ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── cc0-legalcode.txt └── cc0-license.txt /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-host-process-containers-base-image/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-host-process-containers-base-image/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-host-process-containers-base-image/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-host-process-containers-base-image/HEAD/LICENSE -------------------------------------------------------------------------------- /New-HostProcessBaseImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-host-process-containers-base-image/HEAD/New-HostProcessBaseImage.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-host-process-containers-base-image/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-host-process-containers-base-image/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-host-process-containers-base-image/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /cc0-legalcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-host-process-containers-base-image/HEAD/cc0-legalcode.txt -------------------------------------------------------------------------------- /cc0-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-host-process-containers-base-image/HEAD/cc0-license.txt --------------------------------------------------------------------------------