-
I am having difficulty on an ARM64 windows dev machine to run Kernel Memory in Docker. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I build the image on Apple, but as far as I know the image has nothing specific to Apple. Unfortunately, I don't have a platform to test with Windows. Here's how I load KM from Aspire: const string KMDockerImage = "kernelmemory/service";
const string KMDockerTag = "latest";
bool isArm = RuntimeInformation.ProcessArchitecture is Architecture.Arm or Architecture.Arm64;
builder.AddContainer("kernel-memory", KMDockerImage, tag: isArm ? $"{KMDockerTag}-arm64" : KMDockerTag) |
Beta Was this translation helpful? Give feedback.
-
Thanks @dluc. I was able to get the arm64 build on a Windows ARM machine. |
Beta Was this translation helpful? Give feedback.
I build the image on Apple, but as far as I know the image has nothing specific to Apple. Unfortunately, I don't have a platform to test with Windows.
Here's how I load KM from Aspire: