From 44ba9b3e72db68361f2c09c058d0e871aad71d69 Mon Sep 17 00:00:00 2001 From: Hugo Gomes Date: Thu, 20 Apr 2023 10:39:47 +0100 Subject: [PATCH] feat: update pip --- python/alpine/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/alpine/Dockerfile b/python/alpine/Dockerfile index ab9e537..84fc64a 100644 --- a/python/alpine/Dockerfile +++ b/python/alpine/Dockerfile @@ -11,10 +11,10 @@ RUN apk update &&\ python3 &&\ python --version -ENV PYTHON_PIP_VERSION 22.3.1 +ENV PYTHON_PIP_VERSION 23.0.1 ENV PYTHON_SETUPTOOLS_VERSION 65.5.1 -ENV PYTHON_GET_PIP_URL https://github.com/pypa/get-pip/raw/d5cb0afaf23b8520f1bbcfed521017b4a95f5c01/public/get-pip.py -ENV PYTHON_GET_PIP_SHA256 394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637 +ENV PYTHON_GET_PIP_URL https://github.com/pypa/get-pip/raw/0fe65e3c4342300f77a1158d9f2b06fbcf054a88/public/get-pip.py +ENV PYTHON_GET_PIP_SHA256 69a1d4496fe9ab42ffe23fc005e6250cb2899902249855278ee200221c131706 RUN set -eux; \ wget -O get-pip.py "$PYTHON_GET_PIP_URL"; \ echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; \