From a06634ca998494facb95009c7a2d24bc652e37e8 Mon Sep 17 00:00:00 2001
From: Wonderfall <wonderfall@schrodinger.io>
Date: Sat, 25 Jun 2016 14:22:20 +0200
Subject: [PATCH] add boinc image

---
 boinc/Dockerfile | 28 ++++++++++++++++++++++++++++
 boinc/README.md  |  1 +
 2 files changed, 29 insertions(+)
 create mode 100644 boinc/Dockerfile
 create mode 100644 boinc/README.md

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 <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" ]
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