| Index: build.sh
|
| diff --git a/build.sh b/build.sh
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..87776dffcc8db31b9808a39f359723cc9522e9f2
|
| --- /dev/null
|
| +++ b/build.sh
|
| @@ -0,0 +1,12 @@
|
| +#! /bin/bash
|
| +# Build the Docker images for Dart.
|
| +VERSION=1.5.1
|
| +docker build -t google/dart base
|
| +docker tag google/dart google/dart:$VERSION
|
| +docker build -t google/dart-runtime runtime
|
| +docker tag google/dart google/dart-runtime:$VERSION
|
| +cd hello
|
| +pub update
|
| +cd ..
|
| +docker build -t google/dart-hello hello
|
| +docker tag google/dart-hello google/dart-hello:$VERSION
|
|
|