diff --git a/Dockerfile b/Dockerfile index bcbf8f5..c2c34ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,11 @@ RUN echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen && \ echo 'LANG=en_US.UTF-8' > /etc/locale.conf && \ locale-gen +# Configure system +RUN git config --global http.sslVerify "false" && \ + git config --global user.email "no-reply@codingworkshop.eu.org" && \ + git config --global user.name "OSCW Runner" + # Install Docker-in-Docker ENV DIND_COMMIT 3b5fac462d21ca164b3778647420016315289034 RUN wget "https://raw.githubusercontent.com/docker/docker/${DIND_COMMIT}/hack/dind" -O /usr/local/bin/dind && \