From 942f0381550cce72c0e49b1fb3df9c37077a74bf Mon Sep 17 00:00:00 2001 From: Michael Barroco Date: Mon, 8 Jul 2024 22:12:44 +0200 Subject: [PATCH] add git status --- .dockerignore | 1 + Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/.dockerignore b/.dockerignore index f3f73145d..d3d1ae01d 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,2 +1,3 @@ build/workspace +!build/workspace/.gitkeep **/.terraform diff --git a/Dockerfile b/Dockerfile index aa2ca51be..00f2b9f0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,7 @@ RUN go mod download # In order to reliably compute the version of the build, all files must be present. # This is required to detect a dirty workspace using `scripts/git/version.sh`. COPY . /app +RUN git status RUN make interuss