File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,11 @@ ENV DEBIAN_FRONTEND=noninteractive \
18
18
19
19
20
20
RUN \
21
- # add sources for older pythons
22
21
apt-get update -qq --fix-missing && \
23
- apt-get install -y --no-install-recommends software-properties-common && \
22
+ apt-get install -y --no-install-recommends \
23
+ software-properties-common \
24
+ dirmngr \
25
+ gnupg && \
24
26
add-apt-repository ppa:deadsnakes/ppa && \
25
27
apt-add-repository universe && \
26
28
apt-get -y update -qq --fix-missing && \
29
31
python${PYTHON_VERSION}-dev \
30
32
python${PYTHON_VERSION}-distutils \
31
33
curl \
32
- wget \
33
- && \
34
+ wget && \
34
35
rm -rf /var/lib/apt/lists/* && \
35
36
# Set the default python and install PIP packages
36
37
update-alternatives --install /usr/bin/python${PYTHON_VERSION%%.*} python${PYTHON_VERSION%%.*} /usr/bin/python${PYTHON_VERSION} 1 && \
You can’t perform that action at this time.
0 commit comments