diff --git a/Dockerfile b/Dockerfile
index 7e9c80ce6de68e1f515daaf633d627f4a95afb88..b69ae83ceca15f769329ea5ed52c005264c49b97 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/ansible /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 \