Reputation: 12557
I Created a ASP CORE 1.1 project with docker support. it runs.
Now when i downgrade it to asp core 1.0 and run the docker mode i got
The target process exited without raising a CoreCLR started event. Ensure that the target process is configured to use Microsoft.NETCoreapp 1.0.0 or newer [..]
Upvotes: 1
Views: 76
Reputation: 12557
When downgrading the solution the docker file doesn't get updated.
Update in docker file
FROM microsoft/aspnetcore:1.1
to
FROM microsoft/aspnetcore:1.0
Upvotes: 1