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

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: More review comments Created 6 years, 5 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') | no next file with comments »
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
kevmoo 2014/07/08 05:50:33 FYI: you can use ADD w/ an HTTP resource and avoid
Søren Gjesse 2014/08/12 13:08:50 Done.
+
+ENV PATH /usr/lib/dart/bin:$PATH
« no previous file with comments | « README.md ('k') | base/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698