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

Unified Diff: blimp/tools/Dockerfile.base

Issue 2043403004: Create a Dockerfile.base and ensure it is included in build tarballs. (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 | « blimp/engine/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « blimp/engine/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698