mirror of
https://github.com/yavook/kiwi-backup.git
synced 2024-11-21 22:43:01 +00:00
pip options
This commit is contained in:
parent
0f19f4e616
commit
903ea11c10
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