OLD | NEW |
---|---|
1 # Testing dockerfile stub | 1 # Testing filesystem setup. Built from share setup with engine Dockerfile. |
maniscalco
2016/07/11 22:55:24
I'm having a hard time parsing this comment. Can
Jess
2016/07/11 23:15:33
Updated comment.
I am avoiding saying it builds a
| |
2 # TODO(jessicag): Fill in (crbug.com/616945). | 2 FROM base:latest |
3 | |
4 RUN mkdir -p /out/test/ | |
maniscalco
2016/07/11 22:55:24
What's the thinking behind the directory structure
Jess
2016/07/11 23:15:33
The test binaries by default assume src is down tw
maniscalco
2016/07/11 23:21:17
Ah, I see. OK, I suggest adding a comment here to
| |
5 | |
6 # The glob below expands to all files, but does not add directories | |
7 # recursively. | |
8 ADD * /out/test/ | |
9 | |
10 RUN chown -R blimp_user /out/test/ | |
11 | |
12 USER blimp_user | |
OLD | NEW |