1#!/bin/bash
2
3# Build and upload (to Dockerhub) for all platforms for version $1.
4# Use `-r` or `--release` after the version to also push to Dockerhub.
5
6set -e
7
8DIR=`dirname $0`
9ROOT=$DIR/..
10
11VSN=$1
12RELEASE=$2
13
14$ROOT/scripts/docker.sh "range2ip" $VSN $RELEASE
15