From 498d36326e6a313e440358f3f1df95561c060e45 Mon Sep 17 00:00:00 2001 From: ma Date: Tue, 5 Jul 2022 15:02:37 +0200 Subject: [PATCH] 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 && \