add boinc image

This commit is contained in:
Wonderfall 2016-06-25 14:22:20 +02:00
parent a53fe24593
commit a06634ca99
2 changed files with 29 additions and 0 deletions

28
boinc/Dockerfile Normal file
View File

@ -0,0 +1,28 @@
FROM alpine:edge
MAINTAINER Wonderfall <wonderfall@schrodinger.io>
RUN BUILD_DEPS=" \
build-base \
git \
m4 \
automake \
autoconf \
libtool \
curl-dev \
libnotify-dev" \
&& apk -U add \
${BUILD_DEPS} \
libnotify \
libstdc++ \
curl \
&& cd /tmp \
&& git clone https://github.com/BOINC/boinc.git \
&& cd boinc \
&& ./_autosetup \
&& ./configure --disable-server --enable-client CXXFLAGS="-O3 " \
&& make \
&& make install \
&& apk del ${BUILD_DEPS} \
&& rm -rf /var/cache/apk/* /tmp/*
ENTRYPOINT [ "boinc" ]

1
boinc/README.md Normal file
View File

@ -0,0 +1 @@
### NOT READY YET