blob: b23552ac61a4d9fbde13f71e0c1c9b267454f415 [file] [log] [blame]
David Crawshawfa67fe52025-05-01 20:42:08 +00001FROM ghcr.io/boldsoftware/sketch:3a03b430af3cabf3415d263b7803b311
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
David Crawshawfa67fe52025-05-01 20:42:08 +00009LABEL sketch_context="1904f4ae13566afc998b89a591dd37bac3bbe5ee0811b3c8c5d017baa0b7a924"
Earl Lee2e463fb2025-04-17 11:22:22 -070010COPY . /app
11
12WORKDIR /app
13RUN if [ -f go.mod ]; then go mod download; fi
14
David Crawshawfa67fe52025-05-01 20:42:08 +000015RUN echo "Setting up test project environment" || true
David Crawshaw11129492025-04-25 20:41:53 -070016
17CMD ["/bin/sketch"]