From 46a80a05f8eefb02286aa69daa256ed7c0769bab Mon Sep 17 00:00:00 2001 From: Joo-Won Jung Date: Tue, 23 Jan 2024 14:56:48 +0900 Subject: [PATCH] feat: change base image and add package to run FahCore_23 --- fah-gpu/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fah-gpu/Dockerfile b/fah-gpu/Dockerfile index bd35ee2..b3821c8 100644 --- a/fah-gpu/Dockerfile +++ b/fah-gpu/Dockerfile @@ -1,13 +1,14 @@ # Folding@home GPU Container -# CUDA 11.2.2 is chosen to be compatable with OpenMM and drivers v460.32.03+ -FROM nvidia/cuda:11.2.2-base-ubuntu18.04 +# Ubuntu 22.04 and CUDA 11.7.1 are chosen to be compatible with OpenCL 3.0. +FROM nvidia/cuda:11.7.1-base-ubuntu22.04 LABEL description="Official Folding@home GPU Container" RUN apt-get update \ && apt-get install -y --no-install-recommends \ ocl-icd-opencl-dev \ clinfo \ + libexpat1 \ curl \ # point at lib mapped in by container runtime && mkdir -p /etc/OpenCL/vendors \