Skip to content

Commit 10aff35

Browse files
authored
fix: Install poppler-utils and poppler-glib (#73)
This fix adds the necessary additional poppler packages to the base image. Also, I noticed that we were still manually downloading the package for poppler even though it's now available in the chainguard index. I removed the line that downloads the poppler package.
1 parent 46fb2c8 commit 10aff35

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

dockerfiles/wolfi-base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ USER root
99
RUN apk update && \
1010
apk add libxml2 python-3.12 python-3.12-base py3.12-pip glib \
1111
mesa-gl mesa-libgallium cmake bash libmagic wget git openjpeg \
12-
poppler libreoffice && \
12+
poppler poppler-utils poppler-glib libreoffice && \
1313
apk add --allow-untrusted packages/pandoc-3.1.8-r0.apk && \
1414
./install-wolfi-tesseract.sh && rm install-wolfi-tesseract.sh && \
1515
apk cache clean && \

scripts/docker-dl-wolfi-packages.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22

33
if [ "$ARCH" = "arm64" ] || [ "$ARCH" = "aarch64" ]; then
44
files=(
5-
"poppler-23.09.0-r0-aarch64.apk"
65
"pandoc-3.1.8-r0-aarch64.apk"
76
"nltk_data.tgz"
87
)
98
else
109
files=(
11-
"poppler-23.09.0-r0.apk"
1210
"pandoc-3.1.8-r0.apk"
1311
"nltk_data.tgz"
1412
)

0 commit comments

Comments
 (0)