aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Jagiello <michal.jagiello@t-mobile.pl>2022-06-06 13:36:47 +0000
committerGerrit Code Review <gerrit@onap.org>2022-06-06 13:36:47 +0000
commitbb9435bba0dd4705133e489fea9b2dedb029c15c (patch)
tree50f7a7b32b999d9176977b1bb4a5bf469edf63d1
parent02ae7b9917a95d3e184e3c6c42b87eeb0df3db20 (diff)
parent7c3b603260c2e3b242e028105a5c5fa0cc342245 (diff)
Merge "[KOHN] Create python baseline image"
-rw-r--r--Dockerfile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Dockerfile b/Dockerfile
index c0756e3..0de2c34 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
#Copyright (c) 2014 Docker, Inc.
-#Copyright (c) 2021 Samsung Electronics, Co Ltd.
+#Copyright (c) 2022 Samsung Electronics, Co Ltd.
#
#Permission is hereby granted, free of charge, to any person obtaining
#a copy of this software and associated documentation files (the
@@ -26,7 +26,7 @@
# Those Dockerfiles are generated for each new release.
# Below is copy-paste from a generated Dockerfile,
# with GPLv3 dependencies removed.
-FROM alpine:3.15
+FROM alpine:3.16
# ensure local python is preferred over distribution python
ENV PATH /usr/local/bin:$PATH
@@ -46,7 +46,7 @@ RUN set -eux; \
# other runtime dependencies for Python are installed later
ENV GPG_KEY A035C8C19219BA821ECEA86B64E628F8D684696D
-ENV PYTHON_VERSION 3.10.2
+ENV PYTHON_VERSION 3.10.4
RUN set -ex \
&& apk add --no-cache --virtual .fetch-deps \
@@ -133,12 +133,12 @@ RUN cd /usr/local/bin \
&& ln -s python3-config python-config
# if this is called "PIP_VERSION", pip explodes with "ValueError: invalid truth value '<VERSION>'"
-ENV PYTHON_PIP_VERSION 21.2.4
+ENV PYTHON_PIP_VERSION 22.0.4
# https://github.com/docker-library/python/issues/365
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/534008396564b4283e0f418b27020744cc352a4d/public/get-pip.py
-ENV PYTHON_GET_PIP_SHA256 f2aaa496cb4dc3c7f3ceb9fe72d6dbe770f4e9c4013b66d7c81903b4420134fa
+ENV PYTHON_GET_PIP_URL https://github.com/pypa/get-pip/raw/6ce3639da143c5d79b44f94b04080abf2531fd6e/public/get-pip.py
+ENV PYTHON_GET_PIP_SHA256 ba3ab8267d91fd41c58dbce08f76db99f747f716d85ce1865813842bb035524d
RUN set -ex; \
\