From a5f9cf8db0e9b53403f63ec154e65d43e5b4b718 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Mon, 8 Feb 2021 18:10:24 +0100 Subject: [PATCH] Upgrade pip in the docker container Fixes #56 --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f572655..5f3c7d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,9 @@ LABEL "homepage" "https://github.com/pypa/gh-action-pypi-publish" ENV PYTHONDONTWRITEBYTECODE 1 ENV PYTHONUNBUFFERED 1 -RUN pip install --upgrade --no-cache-dir twine +RUN \ + pip install --upgrade --no-cache-dir pip-with-requires-python && \ + pip install --upgrade --no-cache-dir twine WORKDIR /app COPY LICENSE.md .