File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -5,17 +5,12 @@ RUN apt-get update && \
5
5
cmake python3-pip iproute2 zip unzip \
6
6
&& rm -rf /var/lib/apt/lists/*
7
7
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
18
-
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
13
+
19
14
ENV RUNNING_IN_DOCKER=true \
20
15
PIP_BREAK_SYSTEM_PACKAGES=1
21
16
WORKDIR /nerlnet
You can’t perform that action at this time.
0 commit comments