summaryrefslogtreecommitdiff
path: root/docker/centos_21/Dockerfile
blob: 80f79df9ffef36cd1a1f855126c1760ccc920b2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
FROM centos

RUN yum -y update

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




RUN wget https://packages.erlang-solutions.com/erlang-solutions-1.0-1.noarch.rpm

RUN rpm -Uvh erlang-solutions-1.0-1.noarch.rpm

RUN yum update -y

RUN yum install -y erlang-erts-21.0-1.el7.centos \
  erlang-inets-21.0-1.el7.centos \
  erlang-kernel-21.0-1.el7.centos \
  erlang-mnesia-21.0-1.el7.centos \
  erlang-ssl-21.0-1.el7.centos \
  erlang-stdlib-21.0-1.el7.centos



RUN yum install -y  \
  erlang-21.0-1.el7.centos \
  rpm-build