From 87ffc81b65896e61b835395e05e2908309d891e0 Mon Sep 17 00:00:00 2001 From: Nicolas Oliver Date: Tue, 30 May 2017 09:11:11 -0700 Subject: [PATCH] Dockerfile: add python3 test dependencies Signed-off-by: Nicolas Oliver Signed-off-by: Mihai Tudor Panu --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 503369ef..a0ecd663 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN add-apt-repository ppa:mraa/mraa && \ # Docs Build Dependencies python-sphinx doxygen graphviz \ # Python Build Dependencies - python python-dev python3 python3-dev \ + python python-dev python3 python3-dev python-pip python3-pip \ # Java Build Dependencies default-jre default-jdk \ # Sensor Specific Build Dependencies @@ -41,6 +41,9 @@ ENV NVM_DIR /root/.nvm RUN . $NVM_DIR/nvm.sh && nvm install $NODE_VERSION && nvm use $NODE_VERSION && \ npm install -g node-gyp && node-gyp install +# Install Test Dependencies +RUN pip install chardet && pip3 install chardet + # Set Workdir WORKDIR /usr/src/app