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

Add libexpat1 for Nvidia support #24

Merged
merged 1 commit into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ RUN \
apt-get update && \
apt-get install -y \
bzip2 \
intel-opencl-icd && \
intel-opencl-icd \
libexpat1 && \
ln -s libOpenCL.so.1 /usr/lib/x86_64-linux-gnu/libOpenCL.so && \
echo "**** install foldingathome ****" && \
download_url="https://download.foldingathome.org/releases/public/fah-client/"$(curl -s https://download.foldingathome.org/releases/public/fah-client/meta.json | jq -r '.[] | select((.package | contains("debian")) and (.package | contains("release"))) | .package' | grep -v "arm64" | grep "tar.bz2") && \
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ RUN \
apt-get update && \
apt-get install -y \
bzip2 \
libexpat1 \
ocl-icd-libopencl1 && \
ln -s libOpenCL.so.1 /usr/lib/aarch64-linux-gnu/libOpenCL.so && \
echo "**** install foldingathome ****" && \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **10.08.24:** - Add libexpat1 for Nvidia support.
* **25.06.24:** - ***Breaking Changes*** - Please see the Application Setup section for more details. Restructure image for F@H v8.
* **15.06.24:** - Rebase to Ubuntu Noble, add optional cli args.
* **14.12.22:** - Rebase to Ubuntu Jammy, migrate to s6v3.
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ app_setup_block: |
# changelog
changelogs:
- { date: "10.08.24:", desc: "Add libexpat1 for Nvidia support." }
- { date: "25.06.24:", desc: "***Breaking Changes*** - Please see the Application Setup section for more details. Restructure image for F@H v8." }
- { date: "15.06.24:", desc: "Rebase to Ubuntu Noble, add optional cli args." }
- { date: "14.12.22:", desc: "Rebase to Ubuntu Jammy, migrate to s6v3." }
Expand Down