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

Side by Side Diff: runtime/Dockerfile

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 | « hello/web/index.html ('k') | runtime/README.md » ('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 FROM google/dart
2
3 WORKDIR /app
4 ONBUILD ADD pubspec.yaml /app/
5 ONBUILD ADD pubspec.lock /app/
6 ONBUILD RUN pub get
7 ONBUILD ADD . /app
8 ONBUILD RUN pub get
9
10 CMD []
11 ENTRYPOINT ["/usr/bin/dart", "/app/bin/server.dart"]
12 EXPOSE 8080
OLDNEW
« no previous file with comments | « hello/web/index.html ('k') | runtime/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698