This setup uses 3 machines:
- Centos7
- 100GB HDD
- 32 GB RAM
- 8 CPU
| # base image | |
| FROM centos:6 | |
| # install epel | |
| RUN rpm --import http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 \ | |
| && yum install -y epel-release | |
| # install python | |
| RUN yum install -y \ | |
| git \ |