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

Unified Diff: base/Dockerfile

Issue 367903008: Create a set of Dart dockerfiles (Closed) Base URL: https://github.com/dart-lang/dart_docker.git@master
Patch Set: Addressed review commetns Created 6 years, 6 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 | « README.md ('k') | base/README.md » ('j') | base/README.md » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/Dockerfile
diff --git a/base/Dockerfile b/base/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..36c56ba2a92a95c7d4a68fb708e50165aa5d7bf9
--- /dev/null
+++ b/base/Dockerfile
@@ -0,0 +1,6 @@
+FROM google/debian:wheezy
+
+RUN apt-get -q update; apt-get install --no-install-recommends -y -q wget
+RUN wget -q http://storage.googleapis.com/dart-archive/channels/stable/release/37644/linux_packages/debian_wheezy/dart_1.5.1-1_amd64.deb && dpkg -i dart_1.5.1-1_amd64.deb && rm dart_1.5.1-1_amd64.deb
+
+ENV PATH /usr/lib/dart/bin:$PATH
kustermann 2014/07/03 12:39:00 @proppy: We were discussing whether it makes sense
proppy 2014/07/07 23:47:59 It's not good practice to run apt-get upgrade in d
kustermann 2014/07/08 08:49:08 We saw you didn't do it for the other runtimes and
« no previous file with comments | « README.md ('k') | base/README.md » ('j') | base/README.md » ('J')

Powered by Google App Engine
This is Rietveld 408576698