Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #! /bin/bash | |
| 2 # 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.
| |
| 3 VERSION=1.5.1 | |
| 4 docker build -t google/dart base | |
| 5 docker tag google/dart google/dart:$VERSION | |
| 6 docker build -t google/dart-runtime runtime | |
| 7 docker tag google/dart google/dart-runtime:$VERSION | |
| 8 cd hello | |
| 9 pub update | |
| 10 cd .. | |
| 11 docker build -t google/dart-hello hello | |
| 12 docker tag google/dart google/dart-hello:$VERSION | |
| OLD | NEW |