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

Unified Diff: blimp/engine/Dockerfile

Issue 2054953002: Include gdb and strace in Blimp Engine container image (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | no next file » | 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 3a8004a54383bd26cb1413b066424ce6abc5310e..745c12de93b625b57ad1955df92bf37f9ebdaa20 100644
--- a/blimp/engine/Dockerfile
+++ b/blimp/engine/Dockerfile
@@ -7,8 +7,14 @@ RUN apt-get update && \
apt-get install -yq libdrm2 libfontconfig1 libfreetype6 libgraphite2-3 \
libharfbuzz0b libnspr4 libnss3 libstdc++6
+# stunnel4 is needed for incoming TLS connections.
+# wget is needed for crash reporting.
RUN apt-get update && apt-get install -yq stunnel4 wget
+# gdb and strace are not strictly required, but having them around makes
+# debugging easier.
+RUN apt-get update && apt-get install -yq gdb strace
Kevin M 2016/06/09 21:10:14 Why are we updating so many times? One update at t
maniscalco 2016/06/09 23:16:54 Since the impact occurs when someone manually invo
Kevin M 2016/06/09 23:25:11 I'm not sure if having these lines be independent
+
RUN mkdir /engine
RUN useradd -ms /bin/bash blimp_user
« 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