From 498d36326e6a313e440358f3f1df95561c060e45 Mon Sep 17 00:00:00 2001 From: ma Date: Tue, 5 Jul 2022 15:02:37 +0200 Subject: [PATCH 1/2] add python3-lxml to dependencies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 74197f2..4aba52b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ LABEL maintainer="Adrián Parilli " RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ -ca-certificates git python3-all python3-libnbd python3-libvirt python3-lz4 python3-setuptools python3-tqdm qemu-utils && \ +ca-certificates git python3-all python3-libnbd python3-libvirt python3-lz4 python3-setuptools python3-tqdm qemu-utils python3-lxml && \ git clone $source.git && \ cd virtnbdbackup && python3 setup.py install && cd .. && \ apt-get purge -y git ca-certificates && apt-get -y autoremove --purge && apt-get clean && \ From 0f89ddf7ee343f7eeb9d0ecfb2ad39eabdcb6435 Mon Sep 17 00:00:00 2001 From: Michael Ablassmeier Date: Wed, 27 Jul 2022 16:51:27 +0200 Subject: [PATCH 2/2] add python3-paramiko, too --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4aba52b..7d4654a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ LABEL maintainer="Adrián Parilli " RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ -ca-certificates git python3-all python3-libnbd python3-libvirt python3-lz4 python3-setuptools python3-tqdm qemu-utils python3-lxml && \ +ca-certificates git python3-all python3-libnbd python3-libvirt python3-lz4 python3-setuptools python3-tqdm qemu-utils python3-lxml python3-paramiko && \ git clone $source.git && \ cd virtnbdbackup && python3 setup.py install && cd .. && \ apt-get purge -y git ca-certificates && apt-get -y autoremove --purge && apt-get clean && \