diff --git a/Dockerfile b/Dockerfile
index 1c48289524a445f1ac255147793d831ee42877ad..7e9c80ce6de68e1f515daaf633d627f4a95afb88 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,7 @@ COPY ./ansible-galaxy-requirements.yaml ./ansible-galaxy-requirements.yaml
 RUN apk add --update --no-cache gcc libc-dev libffi-dev curl vim bash openssh
 
 # Create ansible.cfg file and set custom paths for collections and roles
-RUN mkdir -p /app/gap/collections /app/gap/roles /etc/ansible && \
+RUN mkdir -p  /app/gap/ansible /etc/ansible && \
     printf "[defaults]\ncollections_paths = /app/gap/ansible\nroles_path = /app/gap/ansible\nhost_key_checking=false" > /etc/ansible/ansible.cfg
 
 RUN pip install \