based on this blog
Build a Dockerfile (one is already created in the repository), you can build the image using the following command
docker build -t rust-graphql:latest .
it takes a while to build, but after that you should be able to run it locally with the following command
docker run -d --name rust-graphql -e "PORT=8765" -e "DEBUG=0" -p 8007:8765 rust-graphql:latest