From 0f89ddf7ee343f7eeb9d0ecfb2ad39eabdcb6435 Mon Sep 17 00:00:00 2001 From: Michael Ablassmeier Date: Wed, 27 Jul 2022 16:51:27 +0200 Subject: [PATCH] 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 && \