diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 43e0b09d954d9a1df6ac43029d861a8ffc1b9df8..d62eb641f3fa4605b9357181d8a9b39e116990a1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -12,8 +12,8 @@ build:
         stage: build
         script:
                 - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
-                - docker build -t $IMAGE_TAG .
-                - docker push $IMAGE_TAG
+                - docker build -t backend/$IMAGE_TAG .
+                - docker push backend/$IMAGE_TAG
 
 
 .test_template: &test_definition
@@ -25,13 +25,13 @@ test_coverage:
         services:
                 - postgres:9.5
         script:
-                - coverage run manage.py test --noinput
+                - coverage run backend/manage.py test --noinput
                 - coverage report --skip-covered
 
 test_pylint:
         <<: *test_definition
         script:
-                - pylint core || exit 0
+                - pylint backend/core || exit 0
 
 
 .staging_template: &staging_definition