File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 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 \
1818
1919
2020RUN \
21- # add sources for older pythons
2221 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 && \
2426 add-apt-repository ppa:deadsnakes/ppa && \
2527 apt-add-repository universe && \
2628 apt-get -y update -qq --fix-missing && \
2931 python${PYTHON_VERSION}-dev \
3032 python${PYTHON_VERSION}-distutils \
3133 curl \
32- wget \
33- && \
34+ wget && \
3435 rm -rf /var/lib/apt/lists/* && \
3536 # Set the default python and install PIP packages
3637 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