Improve fast-build profile

Remove docker build from 'fast-build' profile

Change-Id: I90b79bc05ecd159b5c6ff62f195507476dcdaa38
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3804
diff --git a/cucumber-js-test-apis-ci/pom.xml b/cucumber-js-test-apis-ci/pom.xml
index a10fef6..c37503c 100644
--- a/cucumber-js-test-apis-ci/pom.xml
+++ b/cucumber-js-test-apis-ci/pom.xml
@@ -230,8 +230,8 @@
                         <artifactId>docker-maven-plugin</artifactId>
                         <configuration>
                             <verbose>true</verbose>
-                            <apiVersion>1.23</apiVersion>
-                            <registry>nexus3.onap.org:10001</registry>
+                            <apiVersion>${docker.api.version}</apiVersion>
+                            <registry>${docker.registry}</registry>
                             <authConfig>
                                 <pull>
                                     <username>docker</username>
@@ -241,7 +241,7 @@
                             <images>
                                 <!-- Build sanity image -->
                                 <image>
-                                    <name>onap/cucumber-sdc-api-tests</name>
+                                    <name>${docker.namespace}/cucumber-sdc-api-tests</name>
                                     <alias>cucumber-sdc-api-tests</alias>
                                     <build>
                                         <cleanup>try</cleanup>
@@ -269,7 +269,7 @@
                                 </goals>
                                 <configuration>
                                     <removeAll>true</removeAll>
-                                    <image>onap/cucumber-sdc-api-tests</image>
+                                    <image>${docker.namespace}/cucumber-sdc-api-tests</image>
                                 </configuration>
                             </execution>
                             <execution>
@@ -286,7 +286,7 @@
                                     <goal>push</goal>
                                 </goals>
                                 <configuration>
-                                    <image>onap/cucumber-sdc-api-tests</image>
+                                    <image>${docker.namespace}/cucumber-sdc-api-tests</image>
                                 </configuration>
                             </execution>
                         </executions>