DockerΒΆ

Assuming you are in the root dir of the repository, the following will build the docker container

sudo docker build -t roman_numerals_webservice .

To start the server use the following:

docker run -p 8080:8080 roman_numerals_webservice

Alternatively one can use the prebuild docker image hosted at dockerhub:

sudo docker run -p 8080:8080 derthorsten/roman_numerals_webservice:latest