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

Unified Diff: blimp/Dockerfile

Issue 2028353003: Support for bundling Chromium unittests into a tarball. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor Dockerfile fix. Created 4 years, 7 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
Index: blimp/Dockerfile
diff --git a/blimp/engine/Dockerfile b/blimp/Dockerfile
similarity index 70%
copy from blimp/engine/Dockerfile
copy to blimp/Dockerfile
index 3a8004a54383bd26cb1413b066424ce6abc5310e..ab0ce787299bf5eec78bb979d07106ff6903710f 100644
--- a/blimp/engine/Dockerfile
+++ b/blimp/Dockerfile
@@ -9,18 +9,15 @@ RUN apt-get update && \
RUN apt-get update && apt-get install -yq stunnel4 wget
-RUN mkdir /engine
+RUN mkdir /out
+RUN mkdir /out/test
Sriram 2016/06/02 19:55:05 could use "mkdir -p" to create all parents as well
Jess 2016/06/02 23:02:14 Done. Mostly because I structured this based on h
RUN useradd -ms /bin/bash blimp_user
# The glob below expands to all files, but does not add directories
# recursively.
-ADD * /engine/
-ADD gen/third_party/blimp_fonts /engine/fonts
-RUN mv /engine/chrome_sandbox /engine/chrome-sandbox
-RUN chown -R blimp_user /engine
+ADD * /out/test/
+RUN chown -R blimp_user /out/test
USER blimp_user
-WORKDIR "/engine"
-
-ENTRYPOINT ["/engine/start_engine.sh"]
+WORKDIR "/out/test"

Powered by Google App Engine
This is Rietveld 408576698