mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-20 04:19:18 +00:00
add boinc image
This commit is contained in:
parent
a53fe24593
commit
a06634ca99
28
boinc/Dockerfile
Normal file
28
boinc/Dockerfile
Normal 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
1
boinc/README.md
Normal file
@ -0,0 +1 @@
|
||||
### NOT READY YET
|
Loading…
x
Reference in New Issue
Block a user