diff --git a/roles/constellation-front/tasks/main.yml b/roles/constellation-front/tasks/main.yml
index e753b59539d22dce6b2cecf2bcc409a74cd05d4c..38726d0de8a3f0ba34522ea73af2913b55043fcf 100644
--- a/roles/constellation-front/tasks/main.yml
+++ b/roles/constellation-front/tasks/main.yml
@@ -1,4 +1,14 @@
 ---
+- name: Install some front packages
+  apt:
+    install_recommends: false
+    update_cache: true
+    name:
+      python3-docutils
+  register: apt_result
+  retries: 3
+  until: apt_result is succeeded
+
 - name: Install uWSGI
   apt:
     install_recommends: false