aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-06-24 09:48:04 -0600
committerkballou <kballou@devnulllabs.io>2016-06-24 09:48:04 -0600
commit7ebeb246c434ffca81617f837b9cf92fcf46b72c (patch)
tree97bd3a5defd6209f22d0081ebabe41ebebda8972
parent326fc759af4486694e047a669706e43b2b182326 (diff)
downloaddocker-elixir-centos-7ebeb246c434ffca81617f837b9cf92fcf46b72c.tar.gz
docker-elixir-centos-7ebeb246c434ffca81617f837b9cf92fcf46b72c.tar.xz
Update OTP versionex-1.3.0-otp-19.0
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 6b622cc..3787b4e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -3,7 +3,7 @@ FROM centos:7
MAINTAINER kballou@devnulllabs.io
ENV LANG="en_US.UTF-8"
-ENV OTP_VER="18.3.4"
+ENV OTP_VER="19.0"
ENV REBAR_VERSION="2.6.1"
ENV REBAR3_VERSION="3.2.0"
ENV ELIXIR_VERSION="1.3.0"
@@ -16,7 +16,7 @@ RUN set -xe \
unixODBC-devel \
openssl-devel \
&& OTP_SRC_URL="https://github.com/erlang/otp/archive/OTP-$OTP_VER.tar.gz" \
- && OTP_SRC_SUM="d9e68a8cdef4db0935b02d4b163cf3af403405f756488874736298cf48b90ae9" \
+ && OTP_SRC_SUM="107b629aa7aea1bf76df0197629a50ce4fea61143ebb0e9a1b633b1fbaf9beb7" \
&& curl -fSL "$OTP_SRC_URL" -o otp-src.tar.gz \
&& echo "${OTP_SRC_SUM} otp-src.tar.gz" | sha256sum -c - \
&& mkdir -p /usr/src/otp-src \