Sign inSign up

stefanscherer/nanoserverapiscan

By stefanscherer

Updated over 8 years ago

NanoServerApiScan tool as a Docker image

Image
2

1.4K

stefanscherer/nanoserverapiscan repository overview

NanoServerApiScan

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.

Usage

There are two variants to run the scanner.

Use volume

Bind mount the directory with your Exe files to scan to C:\scan into the container.

docker run -v "$(pwd):C:\scan" stefanscherer/nanoserverapiscan
Use onbuild

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

See also

Tag summary

Content type

Image

Digest

Size

5.1 GB

Last updated

over 8 years ago

docker pull stefanscherer/nanoserverapiscan