From 8818e513a6997d7e0a18516cfa9e6aa6b656d426 Mon Sep 17 00:00:00 2001 From: Vitaly Date: Thu, 25 Feb 2021 23:01:38 +0300 Subject: [PATCH] golang image git clone unable to auto-detect email address issue fix --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9e4ae13..014647e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,8 @@ RUN curl -L http://download.redis.io/redis-stable.tar.gz | tar -xz \ FROM golang:1.15 AS ghost_builder # 2b5d5e0 - Fix ghost issue with binary primary key - https://github.com/github/gh-ost/pull/915 RUN pwd \ + && git config --global user.email "git@dodopizza.com" \ + && git config --global user.name "DodoPizza" \ && git clone https://github.com/github/gh-ost.git \ && cd gh-ost/ \ && git pull origin pull/915/head && git checkout 2b5d5e0 \