Chromium Code Reviews| Index: build.sh |
| diff --git a/build.sh b/build.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..ff39fa3feaa12adb92333f7597ab2bc5b2c8a983 |
| --- /dev/null |
| +++ b/build.sh |
| @@ -0,0 +1,12 @@ |
| +#! /bin/bash |
| +# Build the Docker images for Dart. |
| +VERSION=1.5.8 |
| +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 |