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

Side by Side Diff: blimp/engine/testing/Dockerfile

Issue 2136363002: Fill in testing Dockerfile stub. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment rewrite for directory creation. Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Testing dockerfile stub 1 # This Dockerfile is used to build a filesystem enviornment containing
Wez 2016/07/12 20:34:03 typo: environment
Jess 2016/07/12 21:40:25 Done.
2 # TODO(jessicag): Fill in (crbug.com/616945). 2 # binaries and required files for Blimp Engine test and tests for dependencies
3 # of Blimp Engine. It is built on a base image (base:latest) that is also used
Wez 2016/07/12 20:34:03 nit: wording; suggest "... on the same base image
Jess 2016/07/12 21:40:25 Done.
4 # for running the Engine itself.
5 FROM base:latest
6
7 RUN mkdir -p /out/test/
8
9 # The glob below expands to all files, but does not add directories
10 # recursively.
11 # Test binaries assume src directory is 2 levels down. While this behavior can
12 # be changed with flags, the directory stucture is set up to minimize
Wez 2016/07/12 20:34:03 typo: structure
Jess 2016/07/12 21:40:25 Done.
13 # potential problems with initial integration.
Wez 2016/07/12 20:34:03 I think what you're saying here is "add all the fi
Jess 2016/07/12 21:40:25 There are data dependencies under the source tree
Wez 2016/07/13 00:43:41 Oh, interesting - so I suppose it would help in th
maniscalco 2016/07/13 15:03:23 Jess, correct me if I'm wrong, I believe they're g
Jess 2016/07/13 17:06:46 Nick's got it.
Wez 2016/07/13 18:32:05 OK, so the issue is that when we build the tarball
Jess 2016/07/13 19:51:13 Yes.
14 ADD * /out/test/
15
16 RUN chown -R blimp_user /out/test/
17
18 USER blimp_user
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698