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

Side by Side Diff: Dockerfile

Issue 917793002: Use pub_server package (Closed) Base URL: git@github.com:dart-lang/pub-dartlang-dart.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | app/bin/server_common.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 FROM google/dart-runtime-base 1 FROM google/dart-runtime-base
2 2
3 WORKDIR /project/app 3 WORKDIR /project/app
4 4
5 ADD app.yaml /project/ 5 ADD app.yaml /project/
6 ADD app/pubspec.* /project/app/ 6 ADD app/pubspec.* /project/app/
7 ADD pkg/pubserver/pubspec.* /project/pkg/pubserver/
8 ADD pkg/mustache/pubspec.* /project/pkg/mustache/ 7 ADD pkg/mustache/pubspec.* /project/pkg/mustache/
8 ADD pkg/pub_server/pubspec.* /project/pkg/pub_server/
9 ADD key.json /project/key.json 9 ADD key.json /project/key.json
10 10
11 RUN pub get 11 RUN pub get
12 12
13 ADD pkg /project/pkg 13 ADD pkg /project/pkg
14 ADD app /project/app 14 ADD app /project/app
15 15
16 RUN pub get --offline 16 RUN pub get --offline
17 17
18 ENV DART_VM_OPTIONS --enable-async 18 ENV DART_VM_OPTIONS --enable-async
OLDNEW
« no previous file with comments | « no previous file | app/bin/server_common.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698