-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
30 lines (24 loc) · 742 Bytes
/
Dockerfile
File metadata and controls
30 lines (24 loc) · 742 Bytes
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
FROM centos:7
RUN yum -y update && yum clean all
RUN yum -y install yum-plugin-ovl
RUN yum -y install wget
RUN yum -y install tar
RUN yum -y install bzip2
RUN yum -y install libXext-devel
RUN yum -y install git
RUN yum -y install cmake
RUN yum -y install patch
RUN yum -y install autoconf
RUN yum -y install automake
RUN yum -y install libtool
RUN yum -y install glibc-static
RUN yum -y install file
RUN yum -y install make
RUN yum -y install nano
RUN yum -y install centos-release-scl
RUN yum -y install devtoolset-8-gcc devtoolset-8-gcc-c++
RUN scl enable devtoolset-8 bash
RUN yum clean all
RUN ln -s /_sps/trunk/ExecFramework/main_execmodule /usr/bin/main_execmodule
RUN ln -s /_sps/trunk/convert /usr/bin/convert
CMD ["/bin/bash"]