An express server running inside a docker container.
npm i
npm start // or node server.js
Building the image is as easy as running
docker build .
If you want to tag your image do this instead
docker build . -t yourtag/rankbot
docker run -p 12345:3000 -d yourtag/rankbot
where 12345
is the port you want to be mapped to your host
TBA