Update dockerfile tests.
diff --git a/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile b/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile
index 1a3fe68..b5c3379 100644
--- a/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile
+++ b/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile
@@ -1,4 +1,4 @@
-FROM ghcr.io/boldsoftware/sketch:99a2e4afe316b3c6cf138830dbfb7796
+FROM ghcr.io/boldsoftware/sketch:33392fad8fef8761c0ef3ec098713f00
 
 ARG GIT_USER_EMAIL
 ARG GIT_USER_NAME
@@ -7,7 +7,7 @@
     git config --global user.name "$GIT_USER_NAME" && \
     git config --global http.postBuffer 524288000
 
-LABEL sketch_context="45ae7c2a65560701f1da47223747d1e8d9e62d75b5fc28b51d3a5f6afb0daa3e"
+LABEL sketch_context="32f3dfaaf9794fb866df21522ace42c3d6c9f5664a7edd77e0a90daf57c315ba"
 COPY . /app
 RUN rm -f /app/tmp-sketch-dockerfile
 
@@ -17,16 +17,7 @@
 # Switch to lenient shell so we are more likely to get past failing extra_cmds.
 SHELL ["/bin/bash", "-uo", "pipefail", "-c"]
 
-RUN echo "Setting up a minimal Go test project environment"
-
-# Install any Go-specific testing tools
-RUN go install github.com/stretchr/testify@latest || true
-
-# Basic Python environment setup (optional, will continue if it fails)
-RUN pip3 install pytest pytest-cov || true
-
-# Run initial setup if needed
-RUN if [ -f "Makefile" ]; then make setup || true; fi
+RUN echo "Go test project environment ready" || true
 
 # Switch back to strict shell after extra_cmds.
 SHELL ["/bin/bash", "-euxo", "pipefail", "-c"]