blob: 79e71ad2e742a08a74e7480d5a73e88c5e81440f [file] [log] [blame]
FROM ghcr.io/boldsoftware/sketch:538be6f879a81c5caca6bc08e5c2097c
ARG GIT_USER_EMAIL
ARG GIT_USER_NAME
RUN git config --global user.email "$GIT_USER_EMAIL" && \
git config --global user.name "$GIT_USER_NAME" && \
git config --global http.postBuffer 524288000
LABEL sketch_context="66be619506f6b5a4566f9b37b6ca957807cb85f4779deb44b56d7b62b3d1eae7"
COPY . /app
RUN rm -f /app/tmp-sketch-dockerfile
WORKDIR /app
RUN if [ -f go.mod ]; then go mod download; fi
# Switch to lenient shell so we are more likely to get past failing extra_cmds.
SHELL ["/bin/bash", "-uo", "pipefail", "-c"]
# Switch back to strict shell after extra_cmds.
SHELL ["/bin/bash", "-euxo", "pipefail", "-c"]
CMD ["/bin/sketch"]