We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faf15d8 commit a3582f9Copy full SHA for a3582f9
dev/spark-test-image/python-310/Dockerfile
@@ -45,11 +45,14 @@ RUN apt-get update && apt-get install -y \
45
libxml2-dev \
46
openjdk-17-jdk-headless \
47
pkg-config \
48
- python3.10 \
49
- qpdf \
50
tzdata \
51
- wget \
52
- zlib1g-dev \
+ software-properties-common \
+ zlib1g-dev
+
+# Install Python 3.10
53
+RUN add-apt-repository ppa:deadsnakes/ppa
54
+RUN apt-get update && apt-get install -y \
55
+ python3.10 \
56
&& apt-get autoremove --purge -y \
57
&& apt-get clean \
58
&& rm -rf /var/lib/apt/lists/*
0 commit comments