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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « base/README.md ('k') | codereview.settings » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #! /bin/bash
2 # Build the Docker images for Dart.
3 VERSION=1.5.8
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-hello google/dart-hello:$VERSION
OLDNEW
« 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