Display the pip version during the build

This commit is contained in:
nicolargo 2024-03-04 11:05:21 +01:00
parent 280d76c6dd
commit a71f2b6367
3 changed files with 12 additions and 1 deletions

View File

@ -28,7 +28,14 @@ jobs:
- uses: actions/checkout@v4
- name: Install pip install build tools
- name: Upgrade pip
run: >-
python -m
pip install
--upgrade
pip
- name: Install build tools
run: >-
python -m
pip install

View File

@ -52,6 +52,8 @@ RUN apk add --no-cache \
libffi-dev \
openssl-dev
RUN python${PYTHON_VERSION} -m pip --version
RUN python${PYTHON_VERSION} -m venv --without-pip venv
COPY requirements.txt docker-requirements.txt webui-requirements.txt optional-requirements.txt ./

View File

@ -49,6 +49,8 @@ RUN apt-get update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN python${PYTHON_VERSION} -m pip --version
RUN python${PYTHON_VERSION} -m venv --without-pip venv
COPY requirements.txt docker-requirements.txt webui-requirements.txt optional-requirements.txt ./