Fix Docker build. #2

Merged
roysc merged 3 commits from telackey/49c into statediff-wip 2023-07-10 22:38:05 +00:00
Showing only changes of commit d398bfc902 - Show all commits

View File

@ -14,8 +14,8 @@ ARG GIT_VDBTO_TOKEN
# Get dependencies - will also be cached if we won't change go.mod/go.sum # Get dependencies - will also be cached if we won't change go.mod/go.sum
Review

Argh, sorry about that

Argh, sorry about that
WORKDIR /go-ethereum/ WORKDIR /go-ethereum/
COPY go.mod go.sum . 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/" ; \ RUN if [ -n "$GIT_VDBTO_TOKEN" ]; then git config --global url."https://$GIT_VDBTO_TOKEN:@git.vdb.to/".insteadOf "https://git.vdb.to/"; fi && \
go mod download ; \ go mod download && \
rm -f ~/.gitconfig rm -f ~/.gitconfig
COPY . . COPY . .