From 2af53524bfa0ac673921bfd3a3bd649235ffc85f Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Mon, 10 Jul 2023 13:34:50 -0500 Subject: [PATCH] Take certain steps regardless. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 88a5b0c..2b76e83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,8 @@ ARG GIT_VDBTO_TOKEN WORKDIR /plugeth-statediff/ COPY go.mod go.sum . RUN [ -n "$GIT_VDBTO_TOKEN" ] && \ - git config --global url."https://$GIT_VDBTO_TOKEN@git.vdb.to/".insteadOf "https://git.vdb.to/" && \ - go mod download && \ + git config --global url."https://$GIT_VDBTO_TOKEN@git.vdb.to/".insteadOf "https://git.vdb.to/" ; \ + go mod download ; \ rm -f ~/.gitconfig COPY . .