Created
January 14, 2016 08:47
-
-
Save orotemo/f89ab3b360094b911b0c to your computer and use it in GitHub Desktop.
erlang esl on ubuntu 14.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:trusty | |
RUN apt-get update --fix-missing && apt-get -y upgrade &&\ | |
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 40976EAF437D05B5 && \ | |
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 3B4FE6ACC0B21F32 && \ | |
apt-get -y install wget && apt-get -y install git && apt-get -y install vim | |
RUN cd /tmp; wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && \ | |
dpkg -i erlang-solutions_1.0_all.deb | |
RUN apt-get update && apt-get -y install erlang erlang-base-hipe build-essential | |
RUN git clone https://github.com/rebar/rebar3 && cd rebar3 && ./bootstrap && \ | |
cp rebar3 /usr/bin | |
WORKDIR /code |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment