diff --git a/kolla/cmd/build.py b/kolla/cmd/build.py
index 97dbafc670102ca5999cbf57e89c35033f236c84..eafe8ee7391108aa01fb20103944173a48ce68c2 100755
--- a/kolla/cmd/build.py
+++ b/kolla/cmd/build.py
@@ -12,6 +12,14 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+import os
+import sys
+
+PROJECT_ROOT = os.path.abspath(os.path.join(
+    os.path.dirname(os.path.realpath(__file__)), '../..'))
+if PROJECT_ROOT not in sys.path:
+    sys.path.insert(0, PROJECT_ROOT)
+
 from kolla.image import build