A Docker image that runs a c++ server using crow-cpp.
A Docker image named server can be built by invoking:
docker build . -t serverOnce the server image is built, you can run the server:
docker run -p 8000:8000 server
Note: 8000 is the port you're running on. Visiting http://localhost:8000 should get you to the server!
Invoking:
docker run -it server bashis helpful in inspecting the content of the container.