forked from yurinnick/folding-at-home-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.nvidia
54 lines (45 loc) · 1.61 KB
/
Dockerfile.nvidia
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
FROM nvidia/cuda:10.2-base-ubuntu18.04
LABEL maintainer="wandhydrant" \
repository="https://github.com/yurinnick/folding-at-home-docker" \
description="Unofficial Folding@Home image for Nvidia GPU compute" \
version="7.6"
ARG version="v7.6"
RUN apt-get update && apt-get install -y --no-install-recommends \
# Install PPA dependency
software-properties-common \
# Install Time Zone Database
tzdata && \
# Install folding@home client
useradd --system folding && \
mkdir -p /opt/fahclient/work && \
# download and untar
apt-get update -y && \
apt-get install -y wget bzip2 && \
wget https://download.foldingathome.org/releases/public/release/fahclient/debian-stable-64bit/${version}/latest.tar.bz2 -O /tmp/fahclient.tar.bz2 && \
tar -xjf /tmp/fahclient.tar.bz2 -C /opt/fahclient --strip-components=1 && \
# fix permissions
chown -R folding:folding /opt/fahclient && \
# cleanup
rm -rf /tmp/fahclient.tar.bz2 && \
# Install Nvidia OpenCL
add-apt-repository -y ppa:graphics-drivers && \
apt-get update && apt-get install -y --install-recommends \
nvidia-opencl-dev && \
# Cleaning up
apt-get remove -y software-properties-common && \
apt-get purge -y wget bzip2 && \
apt-get autoremove -y && \
apt-get clean autoclean && \
rm -rf /var/lib/apt/lists/*
COPY --chown=folding:folding entrypoint.sh /opt/fahclient
RUN chmod +x /opt/fahclient/entrypoint.sh
ENV USER "Anonymous"
ENV TEAM "0"
ENV ENABLE_GPU "true"
ENV ENABLE_SMP "true"
ENV POWER "full"
USER folding
WORKDIR /opt/fahclient
EXPOSE 7396
EXPOSE 36330
ENTRYPOINT ["/opt/fahclient/entrypoint.sh"]