Yikun commented on code in PR #56:
URL: https://github.com/apache/spark-docker/pull/56#discussion_r1358357340
##########
3.5.0/scala2.12-java11-python3-r-ubuntu/Dockerfile:
##########
@@ -20,7 +20,10 @@ USER root
RUN set -ex; \
apt-get update; \
- apt-get install -y python3 python3-pip; \
+ apt install -y software-properties-common; \
+ add-apt-repository ppa:deadsnakes/ppa; \
+ apt install python3.10; \
Review Comment:
Is there any special reason why we use the python 3.10? I prefer to use os
default python3 version from matainence cost view, and also os default python
version has more stable quality and security.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]