Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions master/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM erlang:21
FROM erlang:23
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


# elixir expects utf8.
ENV ELIXIR_VERSION="v1.9.0-dev@cee233c" \
ENV ELIXIR_VERSION="v1.11.0-dev@46ff8cc" \
LANG=C.UTF-8

RUN set -xe \
&& ELIXIR_DOWNLOAD_URL="https://github.com/elixir-lang/elixir/archive/${ELIXIR_VERSION#*@}.tar.gz" \
&& ELIXIR_DOWNLOAD_SHA256="09396308e583cee2eaa89ee928e6b217f2d345e0a9dfca5b35765cb50f50981a" \
&& ELIXIR_DOWNLOAD_SHA256="f7b59c7889e17b51b95be967fc81192242e3381da62b2e215823507363176895" \
&& 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