From f366863a9911e6575462eedca4fba04c60beb72e Mon Sep 17 00:00:00 2001 From: Jack Date: Tue, 28 Feb 2023 23:29:27 +0800 Subject: [PATCH] Add rsync in Dockerfile (#9839) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9cc956400..7f263ff42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY library ./library COPY extra_playbooks ./extra_playbooks RUN apt update && apt install -y --no-install-recommends \ - curl python3 python3-pip sshpass vim \ + curl python3 python3-pip sshpass vim rsync \ && rm -rf /var/lib/apt/lists/* /var/log/* \ && pip install --no-cache-dir \ ansible==5.7.1 \