From 9b1779065e1695bcbb92fc29ca62a71e0d77e74a Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Tue, 29 Jun 2021 21:35:46 -0700 Subject: [PATCH] Pin ruamel.yaml.clib to work around docs build issue. --- docs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index f89273099..b9f4e22f8 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.8-alpine3.12 as borgmatic COPY . /app -RUN pip install --no-cache /app && generate-borgmatic-config && chmod +r /etc/borgmatic/config.yaml +RUN pip install --no-cache ruamel.yaml.clib==0.2.2 /app && generate-borgmatic-config && chmod +r /etc/borgmatic/config.yaml RUN borgmatic --help > /command-line.txt \ && for action in init prune create check extract export-tar mount umount restore list info borg; do \ echo -e "\n--------------------------------------------------------------------------------\n" >> /command-line.txt \