diff --git a/docker/ubuntu/binary/base/Dockerfile b/docker/ubuntu/binary/base/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..56dbe6cb3ed0f7b8c16c73d391cd597d652690d9
--- /dev/null
+++ b/docker/ubuntu/binary/base/Dockerfile
@@ -0,0 +1,15 @@
+FROM ubuntu:trusty
+MAINTAINER Kolla Project (https://launchpad.net/kolla)
+
+RUN apt-get update \
+    && apt-get install -y software-properties-common \
+    && add-apt-repository cloud-archive:kilo \
+    && apt-get update \
+    && apt-get upgrade -y \
+    && apt-get dist-upgrade -y \
+    && apt-get install -y \
+        crudini \
+        openssl \
+    && apt-get clean
+
+COPY service_hosts.sh kolla-common.sh /opt/kolla/
diff --git a/docker/ubuntu/binary/base/build b/docker/ubuntu/binary/base/build
new file mode 120000
index 0000000000000000000000000000000000000000..8d652f7ee21d162d383b4c4ce036c4ae1ae2f9fa
--- /dev/null
+++ b/docker/ubuntu/binary/base/build
@@ -0,0 +1 @@
+../../../../tools/build-docker-image
\ No newline at end of file
diff --git a/docker/ubuntu/binary/base/kolla-common.sh b/docker/ubuntu/binary/base/kolla-common.sh
new file mode 120000
index 0000000000000000000000000000000000000000..c265c62f7ae70d3fa72661782afc0be3affc49c8
--- /dev/null
+++ b/docker/ubuntu/binary/base/kolla-common.sh
@@ -0,0 +1 @@
+../../../common/base/kolla-common.sh
\ No newline at end of file
diff --git a/docker/ubuntu/binary/base/service_hosts.sh b/docker/ubuntu/binary/base/service_hosts.sh
new file mode 120000
index 0000000000000000000000000000000000000000..06e0454405c1ccd8bfa27a6827cfed4af862b84f
--- /dev/null
+++ b/docker/ubuntu/binary/base/service_hosts.sh
@@ -0,0 +1 @@
+../../../common/base/service_hosts.sh
\ No newline at end of file