1

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 [..]

enter image description here

Boas Enkler
  • 12,264
  • 16
  • 69
  • 143

1 Answers1

1

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
Boas Enkler
  • 12,264
  • 16
  • 69
  • 143
  • 1
    Thats the side effects of using tools/ui you never know what to change best is to know and own the dockerfile too! :+1: for answering it! – Joel Harkes Mar 09 '17 at 10:06