diff --git a/TLLA/gitlab-ci-2021.yml b/TLLA/gitlab-ci-2021.yml
index d935a46717829ce35a88162bfa3da12d057f9b5d..4199dd33a467addf27bb1979b3dce436d96ffa68 100644
--- a/TLLA/gitlab-ci-2021.yml
+++ b/TLLA/gitlab-ci-2021.yml
@@ -1,3 +1,5 @@
+image: ruby:3.1
+
 stages:
   - build
   - deploy
@@ -8,10 +10,10 @@ variables:
 
 cache:
   paths:
-    - web/vendor/bundle/
+#    - web/vendor/bundle/
+    - vendor/bundle/
 
 .build:
-  image: ruby:3.1
   stage: build
   before_script:
     - apt-get update -qy
@@ -22,10 +24,9 @@ cache:
     - bundle exec jekyll build -d $BUILD_DIR --config $CONFIG
   artifacts:
     paths:
-      - web/$BUILD_DIR
+      - $BUILD_DIR
 
 .deploy:
-  image: debian:bullseye
   stage: deploy
   variables:
   before_script: