diff --git a/Dockerfile.buster b/Dockerfile.buster
index e122c2e1ed3b92f7ac5ca82e7af1b30e11c989ba..9dade57894daac5fa573ad61e2c51960c3287420 100644
--- a/Dockerfile.buster
+++ b/Dockerfile.buster
@@ -14,11 +14,13 @@ RUN apt-get -qq update && \
     mkdir -p /var/run/ && \
     git clone --depth 1 "https://git.cccv.de/infra/ansible/roles/openldap.git" && \
     git clone --depth 1 "https://git.cccv.de/infra/ansible/roles/certificates.git" && \
+    git clone --depth 1 "https://git.cccv.de/uffd/uffd.git" && \
     apt-get -qq clean
 
 COPY ansible-inventory.yml inventory.yml
 COPY ansible-playbook.yml playbook.yml
 COPY ansible.cfg ansible.cfg
+RUN pip3 install -r uffd/requirements.txt
 
 RUN ansible-playbook playbook.yml && \
     rm -fr openldap certificates inventory.yml playbook.yml ansible.cfg