blob: 81a2a230ed4fd204cca8f996051576010bb50b8c [file] [log] [blame]
David Crawshaw11129492025-04-25 20:41:53 -07001FROM ghcr.io/boldsoftware/sketch:v1
Earl Lee2e463fb2025-04-17 11:22:22 -07002
3ARG GIT_USER_EMAIL
4ARG GIT_USER_NAME
5
6RUN git config --global user.email "$GIT_USER_EMAIL" && \
7 git config --global user.name "$GIT_USER_NAME"
8
Josh Bleecher Snydere2d24ab2025-04-30 00:01:41 +00009LABEL sketch_context="2cfc5f8464b9aac599944b68917667ab7dd772029852cec23324f6e6b144ba70"
Earl Lee2e463fb2025-04-17 11:22:22 -070010COPY . /app
11
12WORKDIR /app
13RUN if [ -f go.mod ]; then go mod download; fi
14
Josh Bleecher Snydere2d24ab2025-04-30 00:01:41 +000015RUN 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
David Crawshaw11129492025-04-25 20:41:53 -070016
17CMD ["/bin/sketch"]