Skip to content

Commit

Permalink
elixir v1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
getong committed Dec 5, 2021
1 parent 15fb5b2 commit 8063b47
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions 1.13/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM erlang:24

# elixir expects utf8.
ENV ELIXIR_VERSION="v1.13.0-rc.1" \
ENV ELIXIR_VERSION="v1.13.0" \
LANG=C.UTF-8

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

# elixir expects utf8.
ENV ELIXIR_VERSION="v1.13.0-rc.1" \
ENV ELIXIR_VERSION="v1.13.0" \
LANG=C.UTF-8

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

# elixir expects utf8.
ENV ELIXIR_VERSION="v1.13.0-rc.1" \
ENV ELIXIR_VERSION="v1.13.0" \
LANG=C.UTF-8

RUN set -xe \
&& ELIXIR_DOWNLOAD_URL="https://github.com/elixir-lang/elixir/archive/${ELIXIR_VERSION}.tar.gz" \
&& ELIXIR_DOWNLOAD_SHA256="8506291ce44016e17162aab911f721f474defe3f1eaf640923d0bcffdfb55bbe" \
&& ELIXIR_DOWNLOAD_SHA256="0ed0fb89a9b6428cd1537b7f9aab1d6ea64e0c5972589eeb46dff6f0324468ae" \
&& buildDeps=' \
ca-certificates \
curl \
Expand Down
2 changes: 1 addition & 1 deletion generate-stackbrew-library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -eu

declare -a -r versions=( 1.13 1.12 1.11 1.10 1.9 1.8 1.7 1.6 )
declare -A -r aliases=(
[1.12]='latest'
[1.13]='latest'
)

# get the most recent commit which modified any of "$@"
Expand Down

0 comments on commit 8063b47

Please sign in to comment.