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 0e3a61c630 - Show all commits

View File

@ -3,13 +3,13 @@ FROM golang:1.20-alpine as builder
RUN apk add --no-cache gcc musl-dev binutils-gold linux-headers git
ARG gitea_access_token
ENV GITEA_ACCESS_TOKEN=$gitea_access_token
ARG GITEA_TOKEN
ENV GITEA_TOKEN=$GITEA_TOKEN
# Get and cache deps
COPY go.mod /plugeth-statediff/
COPY go.sum /plugeth-statediff/
RUN if [ -n "$GITEA_ACCESS_TOKEN" ]; then git config --global url."https://$GITEA_ACCESS_TOKEN:@git.vdb.to/".insteadOf "https://git.vdb.to/"; fi && \
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