Skip to content

blaskoa/arm-dotnet-repro

Repository files navigation

arm-dotnet-repro

Correct behavior on x64:

docker build -t ex-repro:x64-1 --target x64 .; docker run --rm -it ex-repro:x64-1;


Incorrect behavior on arm64 (this freezes my powershell on windows with qemu):

docker build -t ex-repro:arm64-1 --target arm64 .; docker run --rm -it ex-repro:arm64-1;


Correct behavior with entrypoint script workaround on arm64, but does not forward signals properly:

docker build -t ex-repro:arm64-entrypoint-1 --target arm64-entrypoint .; docker run --rm -it ex-repro:arm64-entrypoint-1;


Incorrect behavior on arm64 (this freezes my powershell on windows with qemu):

docker build -t ex-repro:arm64-entrypoint-2 --target arm64-entrypoint-exec .; docker run --rm -it ex-repro:arm64-entrypoint-2;


Correct behavior with entrypoint script workaround on arm64, also forwards signals properly so far:

docker build -t ex-repro:arm64-entrypoint-3 --target arm64-entrypoint-wait .; docker run --rm -it ex-repro:arm64-entrypoint-3;


Good but not ideal behavior with Unhandled exception event workaround on arm64:

docker build -t ex-repro:arm64-global-ex --target arm64-global-ex .; docker run --rm -it ex-repro:arm64-global-ex;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published