File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,16 @@ RUN apt-get update && \
5
5
cmake python3-pip iproute2 zip unzip \
6
6
&& rm -rf /var/lib/apt/lists/*
7
7
8
- RUN wget https://packages.erlang-solutions.com/ubuntu/erlang_solutions.asc && \
9
- sudo apt-key add erlang_solutions.asc && \
10
- echo "deb https://packages.erlang-solutions.com/ubuntu focal contrib" | sudo tee /etc/apt/sources.list.d/erlang-solutions.list && \
11
- apt-get update && \
12
- sudo apt install -y esl-erlang
8
+ # Install Erlang/OTP 28.0
9
+ RUN git clone https://github.com/erlang/otp.git && \
10
+ cd otp && \
11
+ git fetch --all --tags && \
12
+ git checkout tags/OTP-28.0 -b otp-28.0 && \
13
+ ./configure && \
14
+ make -j2 && \
15
+ make install && \
16
+ cd - && \
17
+ rm -rf otp
13
18
14
19
ENV RUNNING_IN_DOCKER=true \
15
20
PIP_BREAK_SYSTEM_PACKAGES=1
You can’t perform that action at this time.
0 commit comments