mapbox / robosat

Semantic segmentation on aerial and satellite imagery. Extracts features such as: buildings, parking lots, roads, water, clouds
MIT License
2.02k stars 382 forks source link

Uses `rs` command as default docker entrypoint #149

Closed daniel-j-h closed 5 years ago

daniel-j-h commented 5 years ago

At the moment users have to run the docker container with /app/rs as a command. Because robosat always goes through the rs wrapper and the docker containers only package up robosat it's a better idea to make it the default entrypoint.

Without sub-command we show the help printout.

``` docker build -t daniel-j-h/robosat:latest-cpu -f docker/Dockerfile.cpu . docker run --rm -it daniel-j-h/robosat:latest-cpu usage: ./rs [-h] ... optional arguments: -h, --help show this help message and exit ```

Supersedes https://github.com/mapbox/robosat/pull/140 - can be closed.

@jacquestardie please merge.

jqtrde commented 5 years ago

Thank you @daniel-j-h :+1: