Configure Git in test image (#418)
authorArpit Jalan <arpit@techapj.com>
Mon, 28 Jan 2019 10:40:46 +0000 (16:10 +0530)
committerSam <sam.saffron@gmail.com>
Mon, 28 Jan 2019 10:40:46 +0000 (12:40 +0200)
image/discourse_bench/Dockerfile
image/discourse_test/Dockerfile

index 432b59d738ef91905e522056dbd45e9cd3644bd5..16250da0d6cb45431f91566a86a5b699fbb990bf 100644 (file)
@@ -7,10 +7,6 @@ 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 08d0476126d2f6d03433c7adc2d66a6933bf2fde..6cc2b8471a85767bfe77aa6931f4c24a8f9d955f 100644 (file)
@@ -5,6 +5,10 @@ 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 gem update bundler --force &&\
       cd /var/www/discourse &&\
       chown -R discourse . &&\