1
0
Fork 0
mirror of https://github.com/yavook/kiwi-backup.git synced 2024-11-22 06:53:00 +00:00

Merge branch 'hotfix/0.11.3'

This commit is contained in:
Jörn-Michael Miehe 2022-10-20 11:58:18 +02:00
commit 51ceb74d55

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"; \