You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
I used a hyphen in the module name (socket-module) but the generated dockerfile contains the following entrypoint:
ENTRYPOINT ["dotnet", "socket_edge.dll"]
When deploying the module to my device (arm32) the module exited with a code 145 and i found the following error in the docker logs of the module: Did you mean to run dotnet SDK commands? Please install dotnet SDK from: ...
When changing the entrypoint to:
ENTRYPOINT ["dotnet", "socket-edge.dll"]
everything works as expected
The text was updated successfully, but these errors were encountered:
Turns out that this issue is stemming from a dotnet bug (dotnet/templating#1168). We are investigating if we can do something about it on our side. Meanwhile, can you work around this by not having a "-" in the module name?
Hello there,
i just created a new c# module project following the official tutorial: https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-csharp-module
I used a hyphen in the module name (socket-module) but the generated dockerfile contains the following entrypoint:
ENTRYPOINT ["dotnet", "socket_edge.dll"]
When deploying the module to my device (arm32) the module exited with a code 145 and i found the following error in the docker logs of the module:
Did you mean to run dotnet SDK commands? Please install dotnet SDK from: ...
When changing the entrypoint to:
ENTRYPOINT ["dotnet", "socket-edge.dll"]
everything works as expected
The text was updated successfully, but these errors were encountered: