@@ -182,20 +182,20 @@ RUN cd /tmp \
182
182
# Install Erlang, Elixir and Hex
183
183
ENV PATH="$PATH:/usr/local/elixir/bin"
184
184
# 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
187
187
# This version is currently pinned to OTP 23, due to an issue that we only hit
188
188
# in production, where traffic is routed through a proxy that OTP 24 doesn't
189
189
# play nice with.
190
190
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 \
193
193
&& apt-get update \
194
194
&& apt-get install -y --no-install-recommends esl-erlang=${ERLANG_VERSION} \
195
195
&& curl -sSLfO https://github.com/elixir-lang/elixir/releases/download/${ELIXIR_VERSION}/Precompiled.zip \
196
196
&& echo "$ELIXIR_CHECKSUM Precompiled.zip" | sha512sum -c - \
197
197
&& 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 \
199
199
&& mix local.hex --force \
200
200
&& rm -rf /var/lib/apt/lists/*
201
201
0 commit comments