From f895d53b7a0ab84b281101a5dd3c5827b2b97525 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Sat, 16 Sep 2023 10:49:05 +0200 Subject: [PATCH] Add binutils to Dockerfile to fix pandoc installer --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8811c5de..8c78468f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,11 @@ ENV LANG=C.UTF-8 \ LC_ALL=C.UTF-8 \ DEBIAN_FRONTEND=noninteractive +# binutils is needed for the ar command, used by pypandoc.ensure_pandoc_installed() RUN set -x \ && apt-get update \ && apt-get install -y --no-install-recommends \ + binutils \ ca-certificates \ curl \ git \