aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Jagiello <michal.jagiello@t-mobile.pl>2022-01-31 20:40:26 +0000
committerMichal Jagiello <michal.jagiello@t-mobile.pl>2022-01-31 20:40:26 +0000
commit577bdafe0705c48f5593c54d2cab79a89c0389f1 (patch)
tree036dadd679d891a7f33dc305582bb5c8834adca8
parent01f965956cec26f1d141ab2ba86bebc9de371560 (diff)
[INT] Use Python 3.10.210.1.0
Use the newest Python and Setuptools (based on https://github.com/docker-library/python/blob/master/3.10/alpine3.15/Dockerfile) Issue-ID: INT-2057 Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl> Change-Id: I7b8ab0d3daa3bb886a3fcc6b114b008207e357df
-rw-r--r--Dockerfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index cf745fc..c0756e3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -46,7 +46,7 @@ RUN set -eux; \
# other runtime dependencies for Python are installed later
ENV GPG_KEY A035C8C19219BA821ECEA86B64E628F8D684696D
-ENV PYTHON_VERSION 3.10.1
+ENV PYTHON_VERSION 3.10.2
RUN set -ex \
&& apk add --no-cache --virtual .fetch-deps \
@@ -135,10 +135,10 @@ RUN cd /usr/local/bin \
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
ENV PYTHON_PIP_VERSION 21.2.4
# https://github.com/docker-library/python/issues/365
-ENV PYTHON_SETUPTOOLS_VERSION 57.5.0
+ENV PYTHON_SETUPTOOLS_VERSION 58.1.0
# https://github.com/pypa/get-pip
-ENV PYTHON_GET_PIP_URL https://github.com/pypa/get-pip/raw/3cb8888cc2869620f57d5d2da64da38f516078c7/public/get-pip.py
-ENV PYTHON_GET_PIP_SHA256 c518250e91a70d7b20cceb15272209a4ded2a0c263ae5776f129e0d9b5674309
+ENV PYTHON_GET_PIP_URL https://github.com/pypa/get-pip/raw/534008396564b4283e0f418b27020744cc352a4d/public/get-pip.py
+ENV PYTHON_GET_PIP_SHA256 f2aaa496cb4dc3c7f3ceb9fe72d6dbe770f4e9c4013b66d7c81903b4420134fa
RUN set -ex; \
\