在Windows中运行Docker镜像作为命令行工具?

我有一个运行Ubuntu 14.04和OpenCV的Docker镜像。 我写了一个python实用程序,它将图像作为input并生成图像作为输出。 我想在Windows中将此实用程序作为独立的命令行实用程序运行。 原因是我有一个运行Windows的客户端,想要使用我的实用程序(这将很难再次写入Windows)作为一个命令行工具,他可以从他的.Net代码或从Windows命令行。 他有多个不同的地方,他有电脑安装,并希望一个易于使用的命令行工具,这是我的工具提供的复杂处理。 目前我的实用程序需要1秒钟在Docker镜像中运行。 客户端需要每分钟运行多个请求。

这可能吗? 是否有可能做到这一点,而无需每次启动和closuresDocker镜像都可能导致严重的延迟?

理想情况下,我希望客户能够做到这样的事情:

c:\Users\Client\MyUtil>runUtil startup 8080 Starting up ... Done. c:\Users\Client\MyUtil>runUtil inputImage.png outputImage.png Running util on "inputImage.png" ... Complete. Saving to "outputImage.png" ... Done. c:\Users\Client\MyUtil>runUtil newImage.png outputImage2.png Running util on "newImage.png" ... Complete. Saving to "outputImage2.png" ... Done. c:\Users\Client\MyUtil>runUtil anotherImage.png outputImage3.png Running util on "anotherImage.png" ... Complete. Saving to "outputImage3.png" ... Done.