From 31d4769d508663624edd6c5a439b34e4c84bcf3e Mon Sep 17 00:00:00 2001
From: Bogdan Cochior <bogdan.cochior@thinslices.com>
Date: Wed, 6 Jun 2018 14:20:47 +0300
Subject: [PATCH] ci(aws): pull image from aws container repo

---
 .gitlab-ci.yml | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 60dd57ea4..3eb6ea663 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,8 +8,6 @@ variables:
   IMAGE_NAME: "$REPOSITORY_URL/$IMAGE_TAG"
 
 image: docker:stable
-services:
-  - docker:dind
 
 stages:
   - build
@@ -40,7 +38,7 @@ build:
     name: qa
 
 lint:
-  image: $CI_PROJECT_NAME:$CI_COMMIT_SHA
+  image: $REPOSITORY_URL:latest
   stage: test
   variables:
     GIT_STRATEGY: none
@@ -49,7 +47,7 @@ lint:
     - npm run lint
 
 test:
-  image: $CI_PROJECT_NAME:$CI_COMMIT_SHA
+  image: $REPOSITORY_URL:latest
   stage: test
   variables:
     GIT_STRATEGY: none
-- 
GitLab