dockerimg: add 'apk add grep'
Claude wants to use lots of grep features that the busybox version lacks.
Co-Authored-By: sketch <hello@sketch.dev>
diff --git a/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile b/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile
index 42b20f2..81a2a23 100644
--- a/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile
+++ b/dockerimg/testdata/testcreatedockerfile_basic_repo_with_readme.dockerfile
@@ -6,12 +6,12 @@
RUN git config --global user.email "$GIT_USER_EMAIL" && \
git config --global user.name "$GIT_USER_NAME"
-LABEL sketch_context="c94b5070bcccf737554bc3e44eea559cf127c86b33d80218f3a1689411fab529"
+LABEL sketch_context="2cfc5f8464b9aac599944b68917667ab7dd772029852cec23324f6e6b144ba70"
COPY . /app
WORKDIR /app
RUN if [ -f go.mod ]; then go mod download; fi
-RUN apk add --no-cache build-base || true
+RUN apk add --no-cache bash git make jq sqlite gcc musl-dev linux-headers npm nodejs go github-cli ripgrep fzf python3 curl vim grep || true
CMD ["/bin/sketch"]