1
0
Fork 0
mirror of https://github.com/yavook/kiwi-backup.git synced 2024-11-21 14:33:00 +00:00

pip options

This commit is contained in:
Jörn-Michael Miehe 2022-10-20 11:58:09 +02:00
parent 0f19f4e616
commit 903ea11c10

View file

@ -41,20 +41,20 @@ RUN set -ex; \
; \
# make use of prebuilt wheels where possible
python3 -m pip --no-cache-dir \
install wheel \
install --update wheel \
; \
\
# install duplicity
python3 -m pip --no-cache-dir \
install -r /tmp/requirements.txt \
install --update --requirement /tmp/requirements.txt \
; \
python3 -m pip --no-cache-dir \
install duplicity \
install --update duplicity \
; \
\
# cleanup
python3 -m pip --no-cache-dir \
uninstall -y wheel \
uninstall --yes wheel \
; \
apk del --purge .build-deps; \
rm -f "/tmp/requirements.txt"; \