Upgrade pip in the docker container

Fixes #56
This commit is contained in:
Sviatoslav Sydorenko 2021-02-08 18:10:24 +01:00
parent f91f98d65e
commit a5f9cf8db0
No known key found for this signature in database
GPG key ID: 9345E8FEA89CA455

View file

@ -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 .