Skip to content

Commit

Permalink
Upgrades elixir to 1.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sdwolfz committed May 7, 2018
1 parent 8153265 commit bd537f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 1.6/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM erlang:20

# elixir expects utf8.
ENV ELIXIR_VERSION="v1.6.4" \
ENV ELIXIR_VERSION="v1.6.5" \
LANG=C.UTF-8

RUN set -xe \
&& ELIXIR_DOWNLOAD_URL="https://github.com/elixir-lang/elixir/archive/${ELIXIR_VERSION}.tar.gz" \
&& ELIXIR_DOWNLOAD_SHA256="c12a4931a5383a8a9e9eb006566af698e617b57a1f645a6cb132a321b671292d" \
&& ELIXIR_DOWNLOAD_SHA256="defe2bed953ee729addf1121db3fa42a618ef1d6c57a1f489da03b0e7a626e89" \
&& curl -fSL -o elixir-src.tar.gz $ELIXIR_DOWNLOAD_URL \
&& echo "$ELIXIR_DOWNLOAD_SHA256 elixir-src.tar.gz" | sha256sum -c - \
&& mkdir -p /usr/local/src/elixir \
Expand Down
4 changes: 2 additions & 2 deletions 1.6/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM erlang:20-alpine

# elixir expects utf8.
ENV ELIXIR_VERSION="v1.6.4" \
ENV ELIXIR_VERSION="v1.6.5" \
LANG=C.UTF-8

RUN set -xe \
&& ELIXIR_DOWNLOAD_URL="https://github.com/elixir-lang/elixir/releases/download/${ELIXIR_VERSION}/Precompiled.zip" \
&& ELIXIR_DOWNLOAD_SHA256="3a081c07d8ea2ce6620201e2689ce1fac0ee937ba5c13670cbaa40349e1581ab" \
&& ELIXIR_DOWNLOAD_SHA256="ba2afd91ce65ec94d460a94752fa2560391b349d0fd598847f496ee041a44b80" \
&& buildDeps=' \
ca-certificates \
curl \
Expand Down
4 changes: 2 additions & 2 deletions 1.6/slim/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM erlang:20-slim

# elixir expects utf8.
ENV ELIXIR_VERSION="v1.6.4" \
ENV ELIXIR_VERSION="v1.6.5" \
LANG=C.UTF-8

RUN set -xe \
&& ELIXIR_DOWNLOAD_URL="https://github.com/elixir-lang/elixir/releases/download/${ELIXIR_VERSION}/Precompiled.zip" \
&& ELIXIR_DOWNLOAD_SHA256="3a081c07d8ea2ce6620201e2689ce1fac0ee937ba5c13670cbaa40349e1581ab" \
&& ELIXIR_DOWNLOAD_SHA256="ba2afd91ce65ec94d460a94752fa2560391b349d0fd598847f496ee041a44b80" \
&& buildDeps=' \
ca-certificates \
curl \
Expand Down

0 comments on commit bd537f8

Please sign in to comment.