From e9935c19bc3f3ea2949cdfc81c45818e71aa7e6a Mon Sep 17 00:00:00 2001 From: Alyssa Morrow Date: Sat, 1 Dec 2018 17:10:17 -0800 Subject: [PATCH] updated Mango python version to py35 --- mango/runtime/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mango/runtime/Dockerfile b/mango/runtime/Dockerfile index 86891d3..5d616e4 100644 --- a/mango/runtime/Dockerfile +++ b/mango/runtime/Dockerfile @@ -26,14 +26,17 @@ ENV PYSPARK_PYTHON /usr/bin/python3 RUN apt-get update && apt-get install -y \ git \ make \ + python3.5 \ python3-pip \ npm \ nodejs \ python-tk + # alias python to python3.6 RUN alias pip=pip3 RUN alias python=python3 + RUN echo '#!/bin/bash\npython3 "$@"' > /usr/bin/python && \ chmod +x /usr/bin/python