c0b / docker-elixir

Official Docker image for Elixir :whale: :turtle: :rocket:
http://elixir-lang.org/
190 stars 74 forks source link

Add a new variant elixir:1.8-otp-22 for those brave souls to play with #114

Closed c0b closed 5 years ago

c0b commented 5 years ago

https://github.com/c0b/docker-elixir/pull/113#issuecomment-496077697 The next Elixir:1.9 will start with Erlang OTP-22.

➸ docker image ls
REPOSITORY          TAG                    IMAGE ID            CREATED             SIZE
elixir              v1.8-otp-22-alpine     8e4dfdfb25bf        4 seconds ago       87.2MB
elixir              v1.8-otp-22            fbd756173e1b        2 minutes ago       1.08GB
elixir              v1.8-otp-21.2-alpine   d559f14013c6        7 minutes ago       86.9MB
elixir              v1.8-otp-21.2          9f523d60c425        10 minutes ago      1.08GB
elixir              v1.8-alpine            fccea8285aa4        11 minutes ago      87.2MB
elixir              v1.8-slim              edec74f507c5        12 minutes ago      266MB
elixir              v1.8                   2f655b2cac32        13 minutes ago      1.08GB
➸ diff -urNp ./1.8/Dockerfile ./1.8/otp-22/Dockerfile
--- ./1.8/Dockerfile    2019-05-27 00:14:05.011931183 -0500
+++ ./1.8/otp-22/Dockerfile 2019-05-27 00:46:18.262908094 -0500
@@ -1,4 +1,4 @@
-FROM erlang:21
+FROM erlang:22

 # elixir expects utf8.
 ENV ELIXIR_VERSION="v1.8.2" \

➸ diff -urNp ./1.8/alpine/Dockerfile ./1.8/otp-22-alpine/Dockerfile
--- ./1.8/alpine/Dockerfile 2019-05-27 00:14:05.011931183 -0500
+++ ./1.8/otp-22-alpine/Dockerfile  2019-05-27 00:46:18.262908094 -0500
@@ -1,4 +1,4 @@
-FROM erlang:21-alpine
+FROM erlang:22-alpine

 # elixir expects utf8.
 ENV ELIXIR_VERSION="v1.8.2" \