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 centos | |
| # Git setup | |
| RUN yum install -y git | |
| RUN git config --global push.default simple | |
| RUN git config --global user.name approved_user | |
| RUN git config --global user.email approved@corp.com | |
| # Setup github | |
| WORKDIR /root |