A dashboard for cams showing up, stale, or delayed.
docker build -t cams .
docker run -dp 8501:8501 cams
Be default, the docker build process clones the repo into the image. To run the image so that local changes are reflected after refreshing the page, use this command instead to mount the local directory over the repo in the image:
docker run -dp 8501:8501 --mount type=bind,src="https://github.com/bcgov/DBCCamsDashboard/raw/main/$(pwd)",target=/app cams
The site should be available at http://localhost:8051/.