Skip to content

Commit 331ddbb

Browse files
authored
Merge branch 'main' into luke/cve-patch-jun16
2 parents ab17641 + 5bfcb2d commit 331ddbb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches: [main]
66
pull_request:
77
branches: [main]
8+
workflow_dispatch:
89

910
env:
1011
DOCKER_REPOSITORY: quay.io/unstructured-io

dockerfiles/wolfi-base/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ COPY ./scripts/install-wolfi-libreoffice.sh install-wolfi-libreoffice.sh
55
COPY ./scripts/install-wolfi-tesseract.sh install-wolfi-tesseract.sh
66

77
USER root
8+
# Pin libxml2 to avoid a dependency issue with libreoffice
89
RUN apk update && \
9-
apk add python-3.12 python-3.12-base py3.12-pip glib \
10+
apk add libxml2 python-3.12 python-3.12-base py3.12-pip glib \
1011
mesa-gl mesa-libgallium cmake bash libmagic wget git openjpeg \
1112
poppler libreoffice && \
1213
apk add --allow-untrusted packages/pandoc-3.1.8-r0.apk && \

scripts/docker-dl-wolfi-packages.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@ if [ "$ARCH" = "arm64" ] || [ "$ARCH" = "aarch64" ]; then
44
files=(
55
"poppler-23.09.0-r0-aarch64.apk"
66
"pandoc-3.1.8-r0-aarch64.apk"
7-
"libreoffice-24-24.2.5.2-r1-aarch64.apk"
87
"nltk_data.tgz"
98
)
109
else
1110
files=(
1211
"poppler-23.09.0-r0.apk"
1312
"pandoc-3.1.8-r0.apk"
14-
"libreoffice-24-24.2.5.2-r1.apk"
1513
"nltk_data.tgz"
1614
)
1715
fi

scripts/install-wolfi-libreoffice.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
apk add --allow-untrusted packages/libreoffice-24-24.2.5.2-r1.apk
3+
apk add libreoffice-25.2
44

55
ln -s /usr/lib/libreoffice/program/soffice.bin /usr/bin/libreoffice
66
ln -s /usr/lib/libreoffice/program/soffice.bin /usr/bin/soffice

0 commit comments

Comments
 (0)