diff --git a/conduit-front/.gitlab-ci.yml b/conduit-front/.gitlab-ci.yml
deleted file mode 100644
index 7e27341bf8b86a973ea0b24fbe0207969888acf6..0000000000000000000000000000000000000000
--- a/conduit-front/.gitlab-ci.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-stages:
-  - build
-  - deploy
-
-build:
-  stage: build
-  
-  when: manual 
-
-  image:
-    name: gcr.io/kaniko-project/executor:debug
-    entrypoint: [""]
- 
-  script:
-
-  # Build Frontend
-
-    - echo "Building Frontend"
-    - echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
-    - /kaniko/executor --context $CI_PROJECT_DIR/conduit-front --dockerfile $CI_PROJECT_DIR/conduit-front/Dockerfile --destination $CI_REGISTRY_IMAGE:front
-
-deploy:
-
-#    tags:
-#      - example
-
-    stage: deploy
-
-    when: manual
-
-    script: echo "Deploying"
-    image: bitnami/kubectl:latest
-    script:
-         - kubectl apply -f service.yaml
-         - kubectl apply -f deployment.yaml
-         - kubectl -n default rollout restart deployment default