Update GIT configuration
All checks were successful
OSCW Runner Container Build / OSCW-Runner-Container (push) Successful in 7m33s

This commit is contained in:
Rafal Kupiec 2023-10-18 14:53:17 +02:00
parent b159918768
commit 7e91ed2bcd
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -12,6 +12,11 @@ RUN echo 'en_US.UTF-8 UTF-8' > /etc/locale.gen && \
echo 'LANG=en_US.UTF-8' > /etc/locale.conf && \ echo 'LANG=en_US.UTF-8' > /etc/locale.conf && \
locale-gen 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 # Install Docker-in-Docker
ENV DIND_COMMIT 3b5fac462d21ca164b3778647420016315289034 ENV DIND_COMMIT 3b5fac462d21ca164b3778647420016315289034
RUN wget "https://raw.githubusercontent.com/docker/docker/${DIND_COMMIT}/hack/dind" -O /usr/local/bin/dind && \ RUN wget "https://raw.githubusercontent.com/docker/docker/${DIND_COMMIT}/hack/dind" -O /usr/local/bin/dind && \