diff --git a/Dockerfile b/Dockerfile
index fe3fe69bef436c3fd5a3f653558dfda5abc401cf..76ba49f003cffa1f9840fa91136229c355e97358 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,7 +5,7 @@ ENV PATH="/opt/ansible/bin:$PATH"
 RUN apk --no-cache add python3 && \
     apk --no-cache add --virtual build-dependencies ${ANSIBLE_BUILD_DEPENDENCIES} && \
     python3 -m venv /opt/ansible && \
-    pip3 install --ignore-installed --no-cache-dir --upgrade pip setuptools wheel && \
+    pip3 install --ignore-installed --no-cache-dir --upgrade --disable-pip-version-check pip setuptools wheel && \
     pip3 install --ignore-installed --no-cache-dir ansible ${ANSIBLE_PACKAGES} && \
     #apk del build-dependencies && \
     rm -rf /var/cache/apk/*