mirror of
https://github.com/yavook/kiwi-backup.git
synced 2024-11-22 15:03:01 +00:00
Merge tag 'v0.11.3' into develop
pip options
This commit is contained in:
commit
f29d557f81
1 changed files with 4 additions and 4 deletions
|
@ -41,20 +41,20 @@ RUN set -ex; \
|
||||||
; \
|
; \
|
||||||
# make use of prebuilt wheels where possible
|
# make use of prebuilt wheels where possible
|
||||||
python3 -m pip --no-cache-dir \
|
python3 -m pip --no-cache-dir \
|
||||||
install wheel \
|
install --update wheel \
|
||||||
; \
|
; \
|
||||||
\
|
\
|
||||||
# install duplicity
|
# install duplicity
|
||||||
python3 -m pip --no-cache-dir \
|
python3 -m pip --no-cache-dir \
|
||||||
install -r /tmp/requirements.txt \
|
install --update --requirement /tmp/requirements.txt \
|
||||||
; \
|
; \
|
||||||
python3 -m pip --no-cache-dir \
|
python3 -m pip --no-cache-dir \
|
||||||
install duplicity \
|
install --update duplicity \
|
||||||
; \
|
; \
|
||||||
\
|
\
|
||||||
# cleanup
|
# cleanup
|
||||||
python3 -m pip --no-cache-dir \
|
python3 -m pip --no-cache-dir \
|
||||||
uninstall -y wheel \
|
uninstall --yes wheel \
|
||||||
; \
|
; \
|
||||||
apk del --purge .build-deps; \
|
apk del --purge .build-deps; \
|
||||||
rm -f "/tmp/requirements.txt"; \
|
rm -f "/tmp/requirements.txt"; \
|
||||||
|
|
Loading…
Reference in a new issue