Merge pull request #110 from linuxserver/pip

don't clean up py3-pip (breaks later pip installs)
This commit is contained in:
aptalca 2022-08-29 15:25:59 -04:00 committed by GitHub
commit fc4ccc1cc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 9 deletions

View File

@ -16,18 +16,18 @@ RUN \
g++ \
gcc \
make \
py3-pip \
python3-dev && \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
jq \
py3-openssl \
py3-pip \
py3-setuptools \
python3 && \
echo "**** install pip packages ****" && \
python3 -m pip install --upgrade pip && \
pip3 install --no-cache-dir -U \
python3 -m pip install --upgrade pip wheel && \
pip install --no-cache-dir -U \
mock \
plexapi \
pycryptodomex && \

View File

@ -16,18 +16,18 @@ RUN \
g++ \
gcc \
make \
py3-pip \
python3-dev && \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
jq \
py3-openssl \
py3-pip \
py3-setuptools \
python3 && \
echo "**** install pip packages ****" && \
python3 -m pip install --upgrade pip && \
pip3 install --no-cache-dir -U \
python3 -m pip install --upgrade pip wheel && \
pip install --no-cache-dir -U \
mock \
plexapi \
pycryptodomex && \

View File

@ -16,18 +16,18 @@ RUN \
g++ \
gcc \
make \
py3-pip \
python3-dev && \
echo "**** install packages ****" && \
apk add --no-cache \
curl \
jq \
py3-openssl \
py3-pip \
py3-setuptools \
python3 && \
echo "**** install pip packages ****" && \
python3 -m pip install --upgrade pip && \
pip3 install --no-cache-dir -U \
python3 -m pip install --upgrade pip wheel && \
pip install --no-cache-dir -U \
mock \
plexapi \
pycryptodomex && \