Configure Git for `discourse` user
authorArpit Jalan <arpit@techapj.com>
Tue, 29 Jan 2019 10:43:25 +0000 (16:13 +0530)
committerArpit Jalan <arpit@techapj.com>
Tue, 29 Jan 2019 10:43:25 +0000 (16:13 +0530)
image/discourse_bench/Dockerfile
image/discourse_test/Dockerfile

index 16250da0d6cb45431f91566a86a5b699fbb990bf..432b59d738ef91905e522056dbd45e9cd3644bd5 100644 (file)
@@ -7,6 +7,10 @@ FROM discourse/discourse_test:1.4.0
 # Install ApacheBench
 RUN apt-get install -y apache2-utils libsqlite3-dev
 
+# configure Git to suppress warnings
+RUN git config --global user.email "you@example.com" &&\
+    git config --global user.name "Your Name"
+
 RUN git pull &&\
     sudo -u discourse bundle install --standalone
 
index 6cc2b8471a85767bfe77aa6931f4c24a8f9d955f..93777acf16f11a86925405aa9576032144772503 100644 (file)
@@ -6,8 +6,8 @@ FROM discourse/base:$tag
 MAINTAINER Sam Saffron "https://twitter.com/samsaffron"
 
 # configure Git to suppress warnings
-RUN git config --global user.email "you@example.com" &&\
-    git config --global user.name "Your Name"
+RUN sudo -E -u discourse -H git config --global user.email "you@example.com" &&\
+    sudo -E -u discourse -H git config --global user.name "Your Name"
 
 RUN gem update bundler --force &&\
       cd /var/www/discourse &&\