From bd4d5a026f75ffbbed6ae93ec46fb6d137a5ea61 Mon Sep 17 00:00:00 2001 From: Ilia Eriomenco <ilia.eriomenco@endava.com> Date: Fri, 26 Mar 2021 07:33:52 +0000 Subject: [PATCH] Update .gitlab-ci.coko.yml --- .gitlab-ci.coko.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.coko.yml b/.gitlab-ci.coko.yml index 8392599142..82f3b6fa7e 100644 --- a/.gitlab-ci.coko.yml +++ b/.gitlab-ci.coko.yml @@ -24,14 +24,14 @@ build: if [ -z "$DOCKERHUB_USERNAME" ] || [ -z "$DOCKERHUB_PASSWORD" ]; then echo "Not pushing" && exit 0; fi docker login -u $DOCKERHUB_USERNAME -p $DOCKERHUB_PASSWORD docker build \ - --build-arg instance_name=coko \ - --build-arg node_env=production \ - --build-arg server_protocol=http \ - --build-arg server_host=0.0.0.0 \ - --build-arg server_port=3000 \ - --build-arg client_protocol=http \ - --build-arg client_host=0.0.0.0 \ - --build-arg client_port=4000 \ + # --build-arg instance_name=coko \ + # --build-arg node_env=production \ + # --build-arg server_protocol=http \ + # --build-arg server_host=0.0.0.0 \ + # --build-arg server_port=3000 \ + # --build-arg client_protocol=http \ + # --build-arg client_host=0.0.0.0 \ + # --build-arg client_port=4000 \ --file ./Dockerfile-ci \ --cache-from $IMAGE_ORG/$IMAGE_NAME:latest \ --tag $IMAGE_ORG/$IMAGE_NAME:$CI_COMMIT_SHA \ -- GitLab