sdk-container-builds
sdk-container-builds copied to clipboard
Libraries and build tooling to create container images from .NET projects using MSBuild
When setting EnableSdkContainerDebugging to true it breaks our compilation because we have ContainerImageTags set. The error is `Both ContainerImageTag and ContainerImageTags were provided, but only one or the other is...
This issue is a split from https://github.com/dotnet/sdk-container-builds/issues/527 ### Goal Officially support the OCI Image Index v1 format which might be returned by registries like JFrog Artifactory and Sonatype Nexus. **Spec:**...
By default, we give users Debian base images. That's the correct choice because Debian is the .NET default. However, many users likely don't know that there are other choices. We...
Testing this for a project where I need to publish images to Digital Ocean's container registry and running into an error. I can build and image and manually push it,...
In my mind, `docker login` should not be required for custom **public** base images. (prepending `registry-1.` to the image path as per https://github.com/dotnet/sdk-container-builds/issues/293) ```xml registry-1.docker.io/appifysheets/appifysheets.containerbaseimage:latest ``` If not logged-in, this...
Users aren't always in control of their network - we should provide some way for them to override the default .NET timeout for uploads (100s). This pops up in a...
**Problem description:** It seems there is a problem with the download of blobs from the registry when building the container images when there are multiple projects in the solution and...
Following the [auth documentation](https://github.com/dotnet/sdk-container-builds/blob/main/docs/RegistryAuthentication.md) did not work for me when pushing to ACR from an on-premise devops (with no docker installation). I was trying the "last-resort" environment variables (as [documented](https://github.com/dotnet/sdk-container-builds/blob/main/docs/RegistryAuthentication.md#authentication-via-environment-variables))...
Currently we can only push the image to a single output registry which is fine for most cases but in some cases you might want to push into multiple registries...
### Describe the bug if seombody wants to use a `ContainerBaseImage` that is not inside a public repository the `LANG=en dotnet publish -c Release -p ContainerImageTags="ef-test" /t:PublishContainer` command would fail...