From d57ec784b27dc871995b034df6dc7b40366cecf4 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Tue, 8 Sep 2026 17:27:25 +0200 Subject: [PATCH] fix(docker): add bash for office apps install script --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 41a8c3f81..44aa6f97f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN groupadd cryptpad -g 4001 && useradd cryptpad -u 4001 -g 4001 -d /cryptpad # Install curl for healthcheck # Install git, rdfind and unzip for install-onlyoffice.sh RUN apt-get update && apt-get install --no-install-recommends -y \ - curl ca-certificates git rdfind unzip && \ + bash curl ca-certificates git rdfind unzip && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*