```
# build the docker image
# These env variables will be provided by the TeamCity infra and are only here to demonstrate how to test locally
export TEAMCITY_USERID="<your username>"
export TEAMCITY_PASSWORD="<your password>"
export TEAMCITY_URL="https://build.bitcoinabc.org"
docker build -t abc-docs -f Dockerfile-doxygen --build-arg TEAMCITY_USERID --build-arg TEAMCITY_PASSWORD --build-arg TEAMCITY_URL .
# run the docker image (nginx static HTML)
docker run --rm -p 4000:80 abc-docs
```