Fix http path.

This commit is contained in:
Thomas E Lackey 2023-07-10 14:23:13 -05:00
parent 2a60f921e4
commit afcf2dcb3f

View File

@ -11,14 +11,11 @@ RUN apk add --no-cache gcc musl-dev binutils-gold linux-headers git
# Configure creds for gitea # Configure creds for gitea
ARG GIT_VDBTO_TOKEN ARG GIT_VDBTO_TOKEN
ENV GOPROXY="https://goproxy.cn,direct"
# 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
WORKDIR /go-ethereum/ WORKDIR /go-ethereum/
COPY go.mod go.sum . COPY go.mod go.sum .
RUN [ -n "$GIT_VDBTO_TOKEN" ] && \ RUN [ -n "$GIT_VDBTO_TOKEN" ] && git config --global url."https://$GIT_VDBTO_TOKEN:@git.vdb.to/".insteadOf "https://git.vdb.to/" ; \
git config --global url."https://$GIT_VDBTO_TOKEN@git.vdb.to/".insteadOf "https://git.vdb.to/" && \ go mod download ; \
go mod download && \
rm -f ~/.gitconfig rm -f ~/.gitconfig
COPY . . COPY . .