sketch: Add python3 to our container image
diff --git a/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile b/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile
index dc2cedb..b5fe12f 100644
--- a/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile
+++ b/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile
@@ -1,6 +1,6 @@
FROM golang:1.24.2-alpine3.21
-RUN apk add bash git make jq sqlite gcc musl-dev linux-headers npm nodejs go github-cli ripgrep fzf
+RUN apk add bash git make jq sqlite gcc musl-dev linux-headers npm nodejs go github-cli ripgrep fzf python3 curl vim
ENV GOTOOLCHAIN=auto
ENV GOPATH=/go
@@ -12,7 +12,7 @@
RUN mkdir -p /root/.cache/sketch/webui
-RUN apk add --no-cache curl vim nano || true
+RUN apk add --no-cache build-base || true
ARG GIT_USER_EMAIL
ARG GIT_USER_NAME
@@ -20,7 +20,7 @@
RUN git config --global user.email "$GIT_USER_EMAIL" && \
git config --global user.name "$GIT_USER_NAME"
-LABEL sketch_context="b68650fb5536cd5049bcf01e464d6c2078d232ab2bb6b42cac5ad86a09363e9b"
+LABEL sketch_context="f20a1b665182f3a8a94fe3e1e2042ee1d820fe00af69c72989146e26de9569ba"
COPY . /app
WORKDIR /app