Skip to content

Commit

Permalink
Upgrade pip in the docker container
Browse files Browse the repository at this point in the history
Fixes #56
  • Loading branch information
webknjaz committed Feb 8, 2021
1 parent f91f98d commit a5f9cf8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down

0 comments on commit a5f9cf8

Please sign in to comment.