mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 09:34:49 +09:00

* Trim trailing whitespaces * Match raw with rendered * Delete extra asterisks and | * Update ELT Hooks - tail calls.md Co-authored-by: Jan Kotas <jkotas@microsoft.com>
30 lines
759 B
Markdown
30 lines
759 B
Markdown
# Docker Build Infrastructure
|
|
|
|
Provides reusable docker build infrastructure for the dotnet/runtime repo.
|
|
|
|
## libraries-sdk Dockerfiles
|
|
|
|
The `libraries-sdk` Dockerfiles can be used to build dotnet sdk docker images
|
|
that contain the current libraries built from source.
|
|
These images can be used to build dockerized dotnet services that target the current libraries.
|
|
Currently, debian and windows nanoserver sdk's are supported.
|
|
|
|
### Building the images
|
|
|
|
To build the linux image locally
|
|
|
|
```powershell
|
|
PS> .\build-docker-sdk.ps1 -t dotnet-linux-sdk-current
|
|
```
|
|
|
|
and for Windows:
|
|
|
|
```powershell
|
|
PS> .\build-docker-sdk.ps1 -w -t dotnet-nanoserver-sdk-current
|
|
```
|
|
|
|
To use Debug builds:
|
|
|
|
```powershell
|
|
PS> .\build-docker-sdk.ps1 -c Debug -t dotnet-sdk-current
|
|
```
|