How to create windows-based CUDA-enabled docker image?

I’m new to docker. I created an executable from python script (with pyinstaller) that I want to run in docker container. That executable needs CUDA. I asked ChatGPT and it suggested to use CUDA-enabled image from here. But, these images are for linux. I cannot find CUDA-enabled image for Windows. I’m not clear what should I do and how to proceed. How can I create an CUDA-enabled image where I could run my executable inside the docker container?

Dockerfile

FROM nvidia/cuda:12.3.1-base-ubuntu20.04

COPY myapp.exe /app
WORKDIR /app
CMD ["myapp.exe"]