This repo provides an example containerizing an application made with Bocadillo.
You just need to have Docker installed on your machine. 🐳
First, build the image:
docker build . -t bocadillo-example
Then run the container:
docker run -p 8000:8000 bocadillo-example
The example app will then be accessible at http://localhost:8000.
Need more info? Read the Dockerfile. 👍