docker build -t "chart_creation" .
docker run --network none --rm -e DASH_OUTPUT_PATH="output" -v "$PWD/output_from_docker:/app/output" chart_creation
open output_from_docker/output.html
open output_from_docker/screenshot.png
pip3 install -r requirements.txt
plotly_get_chrome -y
# Get all the topology files
mkdir topojson
cd topojson
# Download the latest version of the topology files
curl -s https://api.github.com/repos/plotly/plotly.js/contents/dist/topojson | jq -r '.[].download_url' | xargs -n 1 curl -O
python3 gen.py && python3 vis.py
open output.html
open screenshot.png