File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,11 +89,11 @@ ARG pythonversion
8989
9090RUN [ -z "${VERBOSE}" ] || set -xv; \
9191 CWD="$PWD" && \
92- upgrades=$(python3 -m pip --no-cache --disable-pip-version-check \
92+ upgrades=$(python3 -m pip --no-cache-dir --disable-pip-version-check \
9393 list --outdated | awk 'NR > 2 {print $1}' ); \
9494 if [ -n "$upgrades" ]; then \
9595 echo "Pip updating $upgrades" ; \
96- python -m pip --no-cache --disable-pip-version-check \
96+ python -m pip --no-cache-dir --disable-pip-version-check \
9797 install -U $upgrades < /dev/null; \
9898 else \
9999 echo "Nothing to pip update" ; \
@@ -211,11 +211,11 @@ RUN apk --no-cache upgrade; \
211211 libstdc++ \
212212 libxapian \
213213 zstd-libs; \
214- upgrades=$(python3 -m pip --no-cache --disable-pip-version-check \
214+ upgrades=$(python3 -m pip --no-cache-dir --disable-pip-version-check \
215215 list --outdated | awk 'NR > 2 {print $1}' ); \
216216 if [ -n "$upgrades" ]; then \
217217 echo "Pip updating $upgrades" ; \
218- python -m pip --no-cache --disable-pip-version-check \
218+ python -m pip --no-cache-dir --disable-pip-version-check \
219219 install -U $upgrades < /dev/null; \
220220 else \
221221 echo "Nothing to pip update" ; \
You can’t perform that action at this time.
0 commit comments