Skip to content

Commit 9c14fef

Browse files
authored
Merge pull request dependabot#4250 from baseballlover723/pr/update_elixir
update Elixir from 1.12.2 -> 1.12.3
2 parents 7e84998 + 0b9853c commit 9c14fef

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -182,20 +182,20 @@ RUN cd /tmp \
182182
# Install Erlang, Elixir and Hex
183183
ENV PATH="$PATH:/usr/local/elixir/bin"
184184
# https://github.com/elixir-lang/elixir/releases
185-
ARG ELIXIR_VERSION=v1.12.2
186-
ARG ELIXIR_CHECKSUM=38eb2281032b0cb096ef5e61f048c5374d6fb9bf4078ab8f9526a42e16e7c661732a632b55d6072328eedf87a47e6eeb3f0e3f90bba1086239c71350f90c75e5
185+
ARG ELIXIR_VERSION=v1.12.3
186+
ARG ELIXIR_CHECKSUM=db092caa32b55195eeb24a17e0ab98bb2fea38d2f638bc42fee45a6dfcd3ba0782618d27e281c545651f93914481866b9d34b6d284c7f763d197e87847fdaef4
187187
# This version is currently pinned to OTP 23, due to an issue that we only hit
188188
# in production, where traffic is routed through a proxy that OTP 24 doesn't
189189
# play nice with.
190190
ARG ERLANG_VERSION=1:23.3.4.5-1
191-
RUN curl -sSLfO https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb \
192-
&& dpkg -i erlang-solutions_1.0_all.deb \
191+
RUN curl -sSLfO https://packages.erlang-solutions.com/erlang-solutions_2.0_all.deb \
192+
&& dpkg -i erlang-solutions_2.0_all.deb \
193193
&& apt-get update \
194194
&& apt-get install -y --no-install-recommends esl-erlang=${ERLANG_VERSION} \
195195
&& curl -sSLfO https://github.com/elixir-lang/elixir/releases/download/${ELIXIR_VERSION}/Precompiled.zip \
196196
&& echo "$ELIXIR_CHECKSUM Precompiled.zip" | sha512sum -c - \
197197
&& unzip -d /usr/local/elixir -x Precompiled.zip \
198-
&& rm -f Precompiled.zip erlang-solutions_1.0_all.deb \
198+
&& rm -f Precompiled.zip erlang-solutions_2.0_all.deb \
199199
&& mix local.hex --force \
200200
&& rm -rf /var/lib/apt/lists/*
201201

0 commit comments

Comments
 (0)