With 8d9a0fe, the docker file build does not work according to the docs.
Docs say to:
git clone https://github.com/snstac/adsbcot.git
cd adsbcot/
docker build -t adsbcot .
Errors out on not being able to find a Dockerfile
Even referencing the file directly (with -f docker/Dockerfile), looks like some of the other resources are now relative to the docker directory, specifically
-COPY adsbcot-docker-example.conf /etc/adsbcot/adsbcot.conf
+COPY docker/adsbcot-docker-example.conf /etc/adsbcot/adsbcot.conf
-COPY start.sh /start.sh
+COPY docker/start.sh /start.sh