NanoServerApiScan tool as a Docker image
1.4K
If you developed a 64-bit application, tool, or agent for Windows Server in C/C++, you can use NanoServerApiScan to check if your app will also run on Nano Server. Remember that Nano Server is 64-bit only and won’t run 32-bit binaries.
There are two variants to run the scanner.
Bind mount the directory with your Exe files to scan to C:\scan into the container.
docker run -v "$(pwd):C:\scan" stefanscherer/nanoserverapiscan
If you can't use -v for example if you are using a remote Windows Docker engine
you can use the onbuild variant instead.
Create a small Dockerfile with the following line in the directory of your binaries to scan.
FROM stefanscherer/nanoserverapiscan:onbuild
Then build a Docker image with your binaries and then run the container to scan all binaries.
docker build -t scan .
docker run scan
Content type
Image
Digest
Size
5.1 GB
Last updated
over 8 years ago
docker pull stefanscherer/nanoserverapiscan