We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When building images on 8.0.405, the entrypoint is invalid. On 8.0.308 (to 8.0.404) it works.
On 8.0.308 - 8.0.404 the image entrypoint specification looks like this:
"Entrypoint": [ "dotnet", "app.dll" ],
On 8.0.405 it looks like this:
"Entrypoint": [ "/app" ],
Run a dotnet publish for containers on both versions.
dotnet publish --os linux --arch x64 -p ContainerImageTag="test" -p ContainerRepository="localhost" -c Release path-to-csproj.csproj
My csproj container specification looks like this:
<PublishProfile>DefaultContainer</PublishProfile> <ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:8.0.3-alpine3.19-amd64</ContainerBaseImage> <ContainerImageTag>test</ContainerImageTag> <ContainerRepository>localhost</ContainerRepository> <ContainerRuntimeIdentifier>linux-x64</ContainerRuntimeIdentifier>
The text was updated successfully, but these errors were encountered:
dsplaisted
No branches or pull requests
Describe the bug
When building images on 8.0.405, the entrypoint is invalid. On 8.0.308 (to 8.0.404) it works.
On 8.0.308 - 8.0.404 the image entrypoint specification looks like this:
On 8.0.405 it looks like this:
To Reproduce
Run a dotnet publish for containers on both versions.
My csproj container specification looks like this:
Exceptions (if any)
Further technical details
The text was updated successfully, but these errors were encountered: