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

Unified Diff: blimp/engine/Dockerfile

Issue 1638153002: Set up an stunnel endpoint for the engine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Documentation updates Created 4 years, 11 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
« no previous file with comments | « blimp/engine/BUILD.gn ('k') | blimp/engine/start_engine.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/engine/Dockerfile
diff --git a/blimp/engine/Dockerfile b/blimp/engine/Dockerfile
index 732ceae57cfc29f5f170c8c71ab38c009f689b14..31bb8e2f1cf7d2a37e475bf1fc92675e71f85032 100644
--- a/blimp/engine/Dockerfile
+++ b/blimp/engine/Dockerfile
@@ -7,6 +7,8 @@ RUN apt-get update && \
apt-get install -yq libdrm2 libfontconfig1 libfreetype6 libgraphite2-3 \
libharfbuzz0b libnspr4 libnss3 libstdc++6
+RUN apt-get update && apt-get install -yq stunnel4
Kevin M 2016/01/28 21:54:12 This "update" looks redundant? Also, can stunnel4
marcinjb 2016/01/28 22:15:38 I'd like to keep it separate as one apt-get is the
+
RUN mkdir /engine
RUN useradd -ms /bin/bash blimp_user
@@ -18,9 +20,5 @@ RUN chown -R blimp_user /engine
USER blimp_user
WORKDIR "/engine"
-ENTRYPOINT ["/engine/blimp_engine_app", \
- "--disable-gpu", \
- "--use-remote-compositing", \
- # Retains display items for serialization on the engine.
- "--disable-cached-picture-raster", \
- "--blimp-client-token-path=/engine/data/client_token"]
+ENTRYPOINT ["/engine/start_engine.sh"]
+
« no previous file with comments | « blimp/engine/BUILD.gn ('k') | blimp/engine/start_engine.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698