Skip to content

Commit

Permalink
elixir v1.14.1 (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryvasquez authored Oct 12, 2022
1 parent 8d4a9b4 commit ac0c3cb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 1.14/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM erlang:25

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

RUN set -xe \
&& ELIXIR_DOWNLOAD_URL="https://github.com/elixir-lang/elixir/archive/${ELIXIR_VERSION}.tar.gz" \
&& ELIXIR_DOWNLOAD_SHA256="ac129e266a1e04cdc389551843ec3dbdf36086bb2174d3d7e7936e820735003b" \
&& ELIXIR_DOWNLOAD_SHA256="8ad537eb84471c24c3e6984c37884f06a7834ff2efd72c436c222baee8df9a11" \
&& 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.14/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM erlang:25-alpine

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

RUN set -xe \
&& ELIXIR_DOWNLOAD_URL="https://github.com/elixir-lang/elixir/archive/${ELIXIR_VERSION}.tar.gz" \
&& ELIXIR_DOWNLOAD_SHA256="ac129e266a1e04cdc389551843ec3dbdf36086bb2174d3d7e7936e820735003b" \
&& ELIXIR_DOWNLOAD_SHA256="8ad537eb84471c24c3e6984c37884f06a7834ff2efd72c436c222baee8df9a11" \
&& buildDeps=' \
ca-certificates \
curl \
Expand Down
4 changes: 2 additions & 2 deletions 1.14/slim/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM erlang:25-slim

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

RUN set -xe \
&& ELIXIR_DOWNLOAD_URL="https://github.com/elixir-lang/elixir/archive/${ELIXIR_VERSION}.tar.gz" \
&& ELIXIR_DOWNLOAD_SHA256="ac129e266a1e04cdc389551843ec3dbdf36086bb2174d3d7e7936e820735003b" \
&& ELIXIR_DOWNLOAD_SHA256="8ad537eb84471c24c3e6984c37884f06a7834ff2efd72c436c222baee8df9a11" \
&& buildDeps=' \
ca-certificates \
curl \
Expand Down

0 comments on commit ac0c3cb

Please sign in to comment.