Closed JamieKeeling closed 6 years ago
@natemcmaster - looks like 1.1 runtime Dockerfiles aren't referencing the latest microsoft/dotnet 1.1 runtime images.
Thanks for catching this @JamieKeeling. The images should be rebuilt over the next hour or so as our CD updates Docker Hub.
I am trying to update a Dockefile that makes use of the new build / runtime images as part of the recently announced MSA (SDK 1.1.8, Runtime 1.1.7) however I am seeing seemingly invalid results.
Steps to reproduce the issue
dotnet new webapi --framework netcoreapp1.1
<RuntimeFrameworkVersion>1.1.7</RuntimeFrameworkVersion>
docker build -t sampleapp .
docker run -t sampleapp
Expected behavior
Application executes against the 1.1.7 runtime, and listens for incoming connections on localhost:5000
Actual behavior
Application outputs the following:
Additional information
The previous release of the associated Docker images worked correctly (our previous usage)
SDK: microsoft/aspnetcore-build:1.1.6-1.1.7 Runtime: microsoft/aspnetcore:1.1.6
Output of
dotnet --info
Output of
docker info