From a5976b7c6f4697ffd0708c09c472109ba951a89d Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 24 Sep 2014 22:59:18 -0500 Subject: [PATCH] Dockerfile initialized git submodules wrongly --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4523ecfd855c..07bb4e9fc8f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,10 @@ FROM python:3-onbuild MAINTAINER Paulus Schoutsen -# Initialize the submodules -RUN git submodule init && git submodule update --recursive +# Initialize the submodules. +#Can't use git submodule init because we are not in a git repo anymore +RUN git clone https://github.com/balloob/pywemo.git external/pywemo && \ + git clone https://github.com/balloob/pynetgear.git external/pynetgear VOLUME /config