Chromium Code Reviews| Index: build.sh |
| diff --git a/build.sh b/build.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..2b42c71dd9de50572e4a03cd9b38619a21f9977c |
| --- /dev/null |
| +++ b/build.sh |
| @@ -0,0 +1,12 @@ |
| +#! /bin/bash |
| +# Build the Docker images for Dart. |
|
proppy
2014/07/02 20:55:55
not sure we need this script, this could be taken
Søren Gjesse
2014/07/03 10:36:40
OK - I have not looked into that yet.
|
| +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 google/dart-hello:$VERSION |