Newer
Older
if [ "$1" = "--help" ] || [ "$1" == "-h" ]; then
echo "custom bridge jammy help menu - build images / run containers"
echo " -b (default) build custom_bridge_jammy using ros2_from_src"
echo " -r start container from default image"
echo ""
echo " --help print help menu"
exit 0
fi
OS="jammy"
image="custom_bridge_example_$OS"
echo "default build"
image+="latest"
docker build -f custom_bridge.Dockerfile -t $image .
exit 0