Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: install mesa-gl 24.1.0 due to libgallium missing #44

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion dockerfiles/wolfi-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,16 @@ COPY ./scripts/install-wolfi-libreoffice.sh install-wolfi-libreoffice.sh
COPY ./scripts/install-wolfi-tesseract.sh install-wolfi-tesseract.sh

USER root
# NOTE(robinson) - the mesa-gl section is a temporary workaround to install mesa-gl 24.1.0 because
# libgallum is missing in mesa-gl 24.2.0 from the wolfi package manager
RUN apk update && \
apk add py3.11-pip mesa-gl glib cmake bash libmagic wget git openjpeg && \
apk add py3.11-pip glib cmake bash libmagic wget git openjpeg && \
wget "https://utic-public-cf.s3.amazonaws.com/mesa-gl-24.1.0-r0.718c913d.apk" && \
wget "https://utic-public-cf.s3.amazonaws.com/mesa-glapi-24.1.0-r0.4390a503.apk" && \
apk add --allow-untrusted mesa-gl-24.1.0-r0.718c913d.apk && \
apk add --allow-untrusted mesa-glapi-24.1.0-r0.4390a503.apk && \
rm mesa-gl-24.1.0-r0.718c913d.apk && \
rm mesa-glapi-24.1.0-r0.4390a503.apk && \
apk add --allow-untrusted packages/pandoc-3.1.8-r0.apk && \
apk add --allow-untrusted packages/poppler-23.09.0-r0.apk && \
./install-wolfi-tesseract.sh && rm install-wolfi-tesseract.sh && \
Expand Down
Loading