49: Use a Personal Access Token to access private modules. #4

Merged
roysc merged 6 commits from telackey/49b into wip 2023-07-07 04:36:32 +00:00
Showing only changes of commit eae5689af2 - Show all commits

View File

@ -8,10 +8,10 @@ ARG GITEA_TOKEN
ENV GITEA_TOKEN=$GITEA_TOKEN
# Get and cache deps
COPY go.mod /plugeth-statediff/
COPY go.sum /plugeth-statediff/
WORKDIR /plugeth-statediff/
COPY go.mod .
COPY go.sum .
RUN if [ -n "$GITEA_TOKEN" ]; then git config --global url."https://$GITEA_TOKEN:@git.vdb.to/".insteadOf "https://git.vdb.to/"; fi && \
cd /plugeth-statediff && \
go mod download && \
rm -f ~/.gitconfig