aboutsummaryrefslogtreecommitdiff
path: root/20/alpine/onbuild/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '20/alpine/onbuild/Dockerfile')
-rw-r--r--20/alpine/onbuild/Dockerfile51
1 files changed, 51 insertions, 0 deletions
diff --git a/20/alpine/onbuild/Dockerfile b/20/alpine/onbuild/Dockerfile
new file mode 100644
index 0000000..acae7eb
--- /dev/null
+++ b/20/alpine/onbuild/Dockerfile
@@ -0,0 +1,51 @@
+# DOCKER-VERSION 1.9.1
+FROM centos:7
+MAINTAINER kballou@devnulllabs.io
+
+ENV LANG="en_US.UTF-8"
+ENV OTP_VERSION="20.0"
+ENV REBAR_VERSION="2.6.4"
+ENV REBAR3_VERSION="3.4.1"
+
+RUN set -xe \
+ && yum -y groups install "Development Tools" \
+ && yum -y install ncurses \
+ ncurses-devel \
+ unixODBC \
+ unixODBC-devel \
+ openssl-devel \
+ && curl -fSL "https://github.com/erlang/otp/archive/OTP-20.0.tar.gz" -o otp-src.tar.gz \
+ && echo "548815fe08f5b661d38334ffa480e9e0614db5c505da7cb0dc260e729697f2ab otp-src.tar.gz" | sha256sum -c - \
+ && mkdir -p /usr/src/otp-src \
+ && tar -zxf otp-src.tar.gz -C /usr/src/otp-src --strip-components=1 \
+ && rm otp-src.tar.gz \
+ && cd /usr/src/otp-src \
+ && ./otp_build autoconf \
+ && ./configure \
+ && make -j 4 \
+ && make install \
+ && find /usr/local -name examples | xargs rm -rf \
+ && cd /usr/src \
+ && rm -rf /usr/src/otp-src \
+ && mkdir -p /usr/src/rebar-src \
+ && curl -fSL "https://github.com/rebar/rebar/archive/${REBAR_VERSION##*@}.tar.gz" -o rebar-src.tar.gz \
+ && echo "577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07 rebar-src.tar.gz" | sha256sum -c - \
+ && tar -zxf rebar-src.tar.gz -C /usr/src/rebar-src --strip-components=1 \
+ && rm rebar-src.tar.gz \
+ && cd /usr/src/rebar-src \
+ && ./bootstrap \
+ && install -v ./rebar /usr/local/bin \
+ && cd /usr/src \
+ && rm -rf /usr/src/rebar-src \
+ && mkdir -p /usr/src/rebar3-src \
+ && curl -fSL "https://github.com/erlang/rebar3/archive/${REBAR3_VERSION##*@}.tar.gz" -o rebar3-src.tar.gz \
+ && echo "fa8b056c37ed3781728baf0fc5b1d87a31edbc5f8dd9b50a5d1ad92b0230e5dd rebar3-src.tar.gz" | sha256sum -c - \
+ && tar -zxf rebar3-src.tar.gz -C /usr/src/rebar3-src --strip-components=1 \
+ && rm rebar3-src.tar.gz \
+ && cd /usr/src/rebar3-src \
+ && HOME=/home/kb/workspace/docker-erlang ./bootstrap \
+ && install -v ./rebar3 /usr/local/bin \
+ && rm -rf /usr/src/rebar3-src \
+ && yum -y groups erase "Development Tools"
+
+CMD ["erl"]