From 90e4bc806fe51c445b2bcbf5f706cff2b6ed8886 Mon Sep 17 00:00:00 2001 From: Ludy87 Date: Wed, 12 Nov 2025 14:27:34 +0100 Subject: [PATCH] Update LibreOffice download to x86_64 in Dockerfile Changed the LibreOffice download URL in Dockerfile.fat from the aarch64 architecture to x86_64 to match the intended platform. --- Dockerfile.fat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.fat b/Dockerfile.fat index 6b997ecf1..ca668b287 100644 --- a/Dockerfile.fat +++ b/Dockerfile.fat @@ -24,7 +24,7 @@ RUN ./gradlew clean build -x spotlessApply -x spotlessCheck -x test -x sonarqube # Main stage FROM alpine:3.22.2@sha256:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990c2ad8dd412 -ADD https://download.documentfoundation.org/libreoffice/stable/25.2.6/deb/aarch64/LibreOffice_25.2.6_Linux_aarch64_deb.tar.gz /tmp/lo.tar.gz +ADD https://download.documentfoundation.org/libreoffice/stable/25.2.6/deb/x86_64/LibreOffice_25.2.6_Linux_x86-64_deb.tar.gz /tmp/lo.tar.gz RUN mkdir -p /opt/libreoffice && \ tar -xzf /tmp/lo.tar.gz -C /opt/libreoffice --strip-components=1 && \ rm -f /tmp/lo.tar.gz && \