linux - add missing pip to rhel

This commit is contained in:
florian 2023-08-04 15:28:06 +02:00
parent adbed77f74
commit 0ccd757817
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
1 changed files with 2 additions and 0 deletions

View File

@ -40,6 +40,8 @@ RUN mkdir -p /usr/share/bunkerweb/deps && \
# Compile and install dependencies
RUN dnf install -y --setopt=install_weak_deps=False readline-devel python39 brotli brotli-devel gperftools-devel perl libxslt-devel libxml2 libxslt bash gd gd-devel gcc-c++ curl znc-modtcl gawk libtool pcre-devel automake autoconf gcc make openssl-devel git zlib-devel libxml2-devel pkgconf libcurl-devel geoip-devel --skip-broken && \
curl https://bootstrap.pypa.io/get-pip.py > /tmp/get-pip.py && \
python3 /tmp/get-pip.py && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir --upgrade pip-tools wheel setuptools && \
chmod +x /tmp/bunkerweb/deps/install.sh && \