dockerimg: restore sketch_context docker label

The sketch_context label was removed in commit 2a5bd6d (switch to debian base image)
but the code that reads this label in findOrBuildDockerImage was left intact.

This was causing Docker to always rebuild images since the label it was checking
for no longer existed in the Dockerfile template.

Restore the label and updates the template.Execute call to pass the required
InitFilesHash parameter.

Updates #43
diff --git a/dockerimg/testdata/testcreatedockerfile_python_misery.dockerfile b/dockerimg/testdata/testcreatedockerfile_python_misery.dockerfile
index d61eed3..031bf57 100644
--- a/dockerimg/testdata/testcreatedockerfile_python_misery.dockerfile
+++ b/dockerimg/testdata/testcreatedockerfile_python_misery.dockerfile
@@ -6,14 +6,17 @@
 RUN git config --global user.email "$GIT_USER_EMAIL" && \
     git config --global user.name "$GIT_USER_NAME"
 
+LABEL sketch_context="06ae0e78aabfa84fc629e6585f6260ec08fb49fc84330a9307173654d41a5628"
 COPY . /app
 
 WORKDIR /app
 RUN if [ -f go.mod ]; then go mod download; fi
 
-# Install Python 3.11 and ensure it's the default python3
-RUN apt-get update && apt-get install -y --no-install-recommends python3.11 python3.11-venv python3-pip || true
-RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
+# Install Python 3.11
+RUN apt-get update && apt-get install -y --no-install-recommends python3.11 python3.11-dev python3.11-venv python3-pip || true
+
+# Set up Python environment
+RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1 || true
 
 # Install DVC tool
 RUN pip3 install dvc || true