blob: 8ea2cdbd47d05ca23a4089d87307652205d2d985 [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" && \
David Crawshawca535582025-05-03 13:04:34 -07007 git config --global user.name "$GIT_USER_NAME" && \
8 git config --global http.postBuffer 524288000
Earl Lee2e463fb2025-04-17 11:22:22 -07009
David Crawshawca535582025-05-03 13:04:34 -070010LABEL sketch_context="f6830cad46a9b0d71acb50ff81972f4494fe1a9d90869544b692bc26dd43adfb"
Earl Lee2e463fb2025-04-17 11:22:22 -070011COPY . /app
12
13WORKDIR /app
14RUN if [ -f go.mod ]; then go mod download; fi
15
David Crawshawca535582025-05-03 13:04:34 -070016# No additional setup required for this simple Go test project
David Crawshaw11129492025-04-25 20:41:53 -070017
18CMD ["/bin/sketch"]