Skip to content

Instantly share code, notes, and snippets.

View JustClem-code's full-sized avatar

Clément Lemarié JustClem-code

View GitHub Profile
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