You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@mesos.apache.org by GitBox <gi...@apache.org> on 2018/09/14 15:38:02 UTC

[GitHub] janisz closed pull request #310: Added Python 3.6 and pip to Docker ARM image.

janisz closed pull request #310: Added Python 3.6 and pip to Docker ARM image.
URL: https://github.com/apache/mesos/pull/310
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/support/mesos-build/ubuntu-16.04-arm.dockerfile b/support/mesos-build/ubuntu-16.04-arm.dockerfile
index 352156fb14..a4e191f94b 100644
--- a/support/mesos-build/ubuntu-16.04-arm.dockerfile
+++ b/support/mesos-build/ubuntu-16.04-arm.dockerfile
@@ -39,7 +39,20 @@ RUN apt-get update && \
       python-dev \
       python-six \
       sed \
-      zlib1g-dev && \
+      zlib1g-dev \
+      software-properties-common \
+      python-software-properties && \
+    apt-get clean && \
+    rm -rf /var/lib/apt/lists
+
+# Install Python 3.6.
+RUN add-apt-repository -y ppa:deadsnakes/ppa && \
+    apt-get update && \
+    apt-get install -qy \
+      python3.6 \
+      python3.6-dev \
+      python3.6-venv && \
+    add-apt-repository --remove -y ppa:deadsnakes/ppa && \
     apt-get clean && \
     rm -rf /var/lib/apt/lists
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services