I am facing problem when I build and run my image. here is my docker file code.
FROM microsoft/nanoserver
MAINTAINER sagar@gmail.com
COPY name.exe /bin/
ENTRYPOINT ["name.exe/bin"]
CMD ["/bin/name.exe", "input1", "output"]
To build I am using this : docker build -t my name .
When I build it it shows successfully but when I run this it is not giving any output or any error. I have tried with other base images also.