summaryrefslogtreecommitdiff
path: root/docker/Dockerfile
blob: 906206897aeb727b51ca95112b097f868e6d1ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM centos

RUN yum -y update 

RUN  yum install -y  \
  gcc \
  systemd-devel  \
  make \
  git  \
  wget \
  which



RUN mkdir /build && cd /build

RUN wget https://www.rabbitmq.com/releases/erlang/erlang-18.3-1.el7.centos.x86_64.rpm

RUN rpm -i erlang-18.3-1.el7.centos.x86_64.rpm

RUN wget https://github.com/rebar/rebar/wiki/rebar && chmod +x rebar