diff --git a/boinc/Dockerfile b/boinc/Dockerfile new file mode 100644 index 0000000..d2529d2 --- /dev/null +++ b/boinc/Dockerfile @@ -0,0 +1,28 @@ +FROM alpine:edge +MAINTAINER Wonderfall + +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" ] diff --git a/boinc/README.md b/boinc/README.md new file mode 100644 index 0000000..1419cb6 --- /dev/null +++ b/boinc/README.md @@ -0,0 +1 @@ +### NOT READY YET