Remove setting up of auth.type config in gerrit container

gerrit container's docker file was setting auth.type configuration in
gerrit.config file. Depends-on docker tests is using upstream gerrit
image which is using docker volumes for mounting path "/var/gerrit/etc,
this is the path where gerrit.config resides.

As per the Docker documentation at [1] If any build steps change the
data within the volume after it has been declared, those changes
will be discarded, hence remove setting up auth.type config in gerrit
Dockerfile.

[1] https://docs.docker.com/engine/reference/builder/#notes-about-specifying-volumes

Change-Id: Ie8bbc744c6d48281b798bfa23370f396020f093a
diff --git a/test/docker/gerrit/Dockerfile b/test/docker/gerrit/Dockerfile
index 179348f..47e1636 100755
--- a/test/docker/gerrit/Dockerfile
+++ b/test/docker/gerrit/Dockerfile
@@ -5,9 +5,6 @@
 
 USER root
 
-RUN git config -f "$GERRIT_SITE/etc/gerrit.config" auth.type \
-    DEVELOPMENT_BECOME_ANY_ACCOUNT
-
 COPY artifacts/bin/ /tmp/
 RUN { [ -e /tmp/gerrit.war ] && cp /tmp/gerrit.war "$GERRIT_SITE/bin/gerrit.war" ; } || true