diff --git a/sogo/Dockerfile b/sogo/Dockerfile index e6f8e3aa23e041c2b71801e5b155f39c28a9812b..f446b6f50a54d57d9af44a0d15195b5705209762 100644 --- a/sogo/Dockerfile +++ b/sogo/Dockerfile @@ -24,6 +24,10 @@ COPY --from=repo-key /gnupghome/inverse.gpg /usr/share/keyrings/ COPY inverse.sources /etc/apt/sources.list.d/ # hadolint ignore=DL3008 RUN apt-get update && \ + # FIXME: There's an issue with the sogo package configure script, this is a + # hackish workaround. The error is: chmod: cannot access + # '/usr/share/doc/sogo/*.sh': No such file or directory + mkdir -p /usr/share/doc/sogo/ && touch /usr/share/doc/sogo/foo.sh && \ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ sogo-activesync \ sogo \