mirror of https://github.com/nicolargo/glances.git
Display the pip version during the build
This commit is contained in:
parent
280d76c6dd
commit
a71f2b6367
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 ./
|
||||
|
|
|
|||
|
|
@ -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 ./
|
||||
|
|
|
|||
Loading…
Reference in New Issue