Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4013)

Unified Diff: build.sh

Issue 367903008: Create a set of Dart dockerfiles (Closed) Base URL: https://github.com/dart-lang/dart_docker.git@master
Patch Set: Update Dart version and dart-hello readme Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/README.md ('k') | codereview.settings » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « base/README.md ('k') | codereview.settings » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698