diff --git a/Dockerfile b/Dockerfile
index 6450cfb47a..c637154d43 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -49,8 +49,7 @@ RUN curl -sL "https://github.com/cli/cli/releases/download/v2.53.0/gh_2.53.0_lin
 RUN curl -sL https://dl.k8s.io/release/$( \
     curl -sL https://dl.k8s.io/release/stable.txt \
     )/bin/linux/${ARCH}/kubectl -o /usr/local/bin/kubectl && \
-    chmod a+x /usr/local/bin/kubectl; \
-    pip install codespell
+    chmod a+x /usr/local/bin/kubectl
 
 RUN python3 -m pip install awscli
 RUN curl -sL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.55.2
diff --git a/Dockerfile.windows b/Dockerfile.windows
index 93fb23d85c..7ef2118b1c 100644
--- a/Dockerfile.windows
+++ b/Dockerfile.windows
@@ -32,8 +32,7 @@ RUN set -x && \
 RUN curl -sL https://dl.k8s.io/release/$( \
     curl -sL https://dl.k8s.io/release/stable.txt \
     )/bin/linux/${ARCH}/kubectl -o /usr/local/bin/kubectl && \
-    chmod a+x /usr/local/bin/kubectl; \
-    pip install codespell
+    chmod a+x /usr/local/bin/kubectl
 RUN curl -sL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.55.2
 WORKDIR /source
 # End Dapper stuff