Chromium Code Reviews| 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 |