diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 438b5e8d3af3886e8a56dd7a4ae05422e3d1170b..ec84d03b5c819b07225c1a3f66165e3abccd22a3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -423,6 +423,7 @@ sync-zotero:
       --build-arg "BASE_URL=$BASE_URL" 
       --build-arg "MEILI_HOST=${MEILI_HOST}" 
       --build-arg "MEILI_API_KEY=$MEILI_API_KEY"
+      --build-arg "SHORT_SHA=${$CI_COMMIT_SHORT_SHA}"
       -f $DOCKERFILE $CONTEXT
     - docker push "$CI_REGISTRY_IMAGE/$IMAGE_NAME:$CI_COMMIT_SHORT_SHA"
 
diff --git a/components/Footer.vue b/components/Footer.vue
index bdc77eee1bef756125794f0a8d0ace36dc699776..755f9554ab4300fe0dbcb3c6f9c75ec1a2e72ca5 100644
--- a/components/Footer.vue
+++ b/components/Footer.vue
@@ -1,10 +1,8 @@
 <script setup lang="ts">
 const runtimeConfig = useRuntimeConfig();
-
 </script>
 <template>
     <v-footer app text-center d-flex flex-column>
-        test
         <div class="px-4 text-center w-100">
             <span> {{ runtimeConfig.public.shortSha }}
             </span>
diff --git a/docker-compose.yml b/docker-compose.yml
index c9ab11ca13a7986ef613e0b2ed093972dc2daaa0..dd449f229f466d175122bbf7bd2a6e2db854641a 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -12,6 +12,7 @@ services:
     container_name: nuxt
     environment:
       HOST: 0.0.0.0
+      NUXT_PUBLIC_SHORT_SHA: "short-sha"
     volumes:
       - .:/usr/src/app
       - defense-finder-wiki-node-modules:/usr/src/app/node_modules
diff --git a/nuxt.config.ts b/nuxt.config.ts
index a38f2c06e286a9b000bd4f9414dc87f9a34a1bde..bd958c30d7d8ae99aa226aa933f11b2808f14781 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -77,6 +77,7 @@ export default defineNuxtConfig({
   runtimeConfig: {
 
     public: {
+      shortSha: 'xxxxx',
       defenseFinderWebservice: '/',
       hostUrl: "http://localhost:8082",
       meilisearchClient: {