Chromium Code Reviews| Index: blimp/tools/Dockerfile.base |
| diff --git a/blimp/tools/Dockerfile.base b/blimp/tools/Dockerfile.base |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..391b62384dccdf5bba6011fcef8d64c7c65a5b7f |
| --- /dev/null |
| +++ b/blimp/tools/Dockerfile.base |
| @@ -0,0 +1,12 @@ |
| +# Blimp base Dockerfile. Should be used by all Dockerfiles used by Blimp to |
|
maniscalco
2016/06/10 22:27:29
Does this file replace //blimp/Dockerfile?
Or is
Jess
2016/06/11 00:45:12
It was intended as the latter.
I placed the test
|
| +# ensure test and release binaries all run under the same system environment. |
| +FROM ubuntu:trusty |
| + |
| +# Run the command below to update the lib list. |
| +# ldd ./blimp_engine_app | grep usr/lib | awk '{print $3}' | xargs -n1 \ |
| +# dpkg-query -S | awk -F: '{print $1}' | sort | uniq |
| +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 wget |
|
maniscalco
2016/06/10 22:27:29
Note, earlier today I landed a change to the file
Jess
2016/06/11 00:45:12
Updated.
Proof of value of having one place for t
|