diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a4d93f4f02cfeb3d1a4c639353f856be70606448..dd936aa08f48b5a910736e4614b7abf4491ca1a4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,9 +4,10 @@ stages:
 
 build:
   stage: build_stage
+  image: node
   script:
-    - apt update -y
-    - apt install npm -y
+#- apt update -y
+   # - apt install npm -y
     - npm install
   artifacts:
     paths:
@@ -17,8 +18,9 @@ build:
 
 deploy:
   stage: deploy_stage
+  image : node
   script:
-    - apt update -y
-    - apt install nodejs -y
+  #  - apt update -y
+  #  - apt install nodejs -y
     - node app.js > /dev/null 2>&1 &