Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions release-notes/11.0/preview/preview3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ These notes cover the highest-value changes that shipped in .NET 11 Preview 3:
- [Libraries](./libraries.md)
- [Runtime](./runtime.md)
- [SDK](./sdk.md)
- [Containers](./containers.md)

## Languages

Expand Down
24 changes: 24 additions & 0 deletions release-notes/11.0/preview/preview3/containers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Container images in .NET 11 Preview 3 - Release Notes

Here's a summary of what's new for .NET container images in this Preview 3
release:

## .NET container images are now signed

All .NET container images now are now cryptographically signed by Microsoft
according to the [Notary Project] specification. See the [image signatures
documentation] for the latest documentation on inspecting and verifying image
signatures.

Use the [Notation CLI] or the [ORAS CLI] to see details about signature
artifacts:

```console
notation inspect mcr.microsoft.com/dotnet/sdk:11.0.100-preview.3
oras discover mcr.microsoft.com/dotnet/sdk:11.0.100-preview.3
```

[Notary Project]: https://notaryproject.dev/docs/notary-project-overview/
[image signatures documentation]: https://github.com/dotnet/dotnet-docker/blob/main/documentation/image-signatures.md
[Notation CLI]: https://github.com/notaryproject/notation
[ORAS CLI]: https://oras.land/docs/installation
Loading