We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d7dd7d commit ab05babCopy full SHA for ab05bab
Dockerfile
@@ -4,7 +4,9 @@ WORKDIR /gitsign
4
RUN git config --global --add safe.directory /gitsign
5
COPY . .
6
USER root
7
-RUN export GIT_VERSION=$(git describe --tags --always --dirty) && \
+RUN git stash && \
8
+ export GIT_VERSION=$(git describe --tags --always --dirty) && \
9
+ git stash pop && \
10
go mod vendor && \
11
make -f Build.mak gitsign-cli-darwin-amd64 && \
12
make -f Build.mak gitsign-cli-linux-amd64 && \
0 commit comments