Index: blimp/engine/Dockerfile |
diff --git a/blimp/engine/Dockerfile b/blimp/engine/Dockerfile |
index 745c12de93b625b57ad1955df92bf37f9ebdaa20..12b4b61894afe2372d701bfe99e715201485fdd0 100644 |
--- a/blimp/engine/Dockerfile |
+++ b/blimp/engine/Dockerfile |
@@ -1,19 +1,4 @@ |
-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 |
- |
-# 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 |
+FROM base:latest |
RUN mkdir /engine |