dev_scripts: Install pip in dev environments

Install pip in dev environments, so that we can use it to vendor
PyMuPDf in subsequent commits.
This commit is contained in:
Alex Pyrgiotis 2024-10-07 14:30:30 +03:00
parent 8f71df56d9
commit 44a6cc0017
No known key found for this signature in database
GPG key ID: B6C15EBA0357C9AA

View file

@ -147,7 +147,7 @@ RUN apt-get update \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends dh-python make build-essential \ && apt-get install -y --no-install-recommends dh-python make build-essential \
git {qt_deps} pipx python3 python3-venv dpkg-dev debhelper python3-setuptools \ git {qt_deps} pipx python3 python3-pip python3-venv dpkg-dev debhelper python3-setuptools \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# NOTE: `pipx install poetry` fails on Ubuntu Focal, when installed through APT. By # NOTE: `pipx install poetry` fails on Ubuntu Focal, when installed through APT. By
# installing the latest version, we sidestep this issue. # installing the latest version, we sidestep this issue.