File tree Expand file tree Collapse file tree 6 files changed +12
-6
lines changed
sai-ethereum-contract-interaction Expand file tree Collapse file tree 6 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ WORKDIR /src
44
55COPY ./ /src/
66
7- RUN go build -o sai-interax-proxy -buildvcs=false
7+ ENV GOPRIVATE=github.com/KiraCore/*
8+ RUN go mod tidy && go build -o sai-interax-proxy -buildvcs=false
89
910FROM ubuntu
1011
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ WORKDIR /src
55
66COPY ./ /src/
77
8- RUN go build -o sai-cosmos-indexer -buildvcs=false
8+ ENV GOPRIVATE=github.com/KiraCore/*
9+ RUN go mod tidy && go build -o sai-cosmos-indexer -buildvcs=false
910
1011FROM ubuntu
1112
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ WORKDIR /src
55
66COPY ./ /src/
77
8- RUN go build -o sai-cosmos-interaction -buildvcs=false
8+ ENV GOPRIVATE=github.com/KiraCore/*
9+ RUN go mod tidy && go build -o sai-cosmos-interaction -buildvcs=false
910
1011FROM ubuntu
1112
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ WORKDIR /src/
44
55COPY ./ /src/
66
7- RUN go build -o sai-eth-interaction -buildvcs=false
7+ ENV GOPRIVATE=github.com/KiraCore/*
8+ RUN go mod tidy && go build -o sai-eth-interaction -buildvcs=false
89
910FROM ubuntu
1011
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ WORKDIR /src/cmd/app
55
66COPY ./ /src/
77
8- RUN go build -o sai-eth-indexer -buildvcs=false
8+ ENV GOPRIVATE=github.com/KiraCore/*
9+ RUN go mod tidy && go build -o sai-eth-indexer -buildvcs=false
910
1011FROM ubuntu
1112
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ WORKDIR /src/
55
66COPY ./ /src/
77
8- RUN go build -o sai-storage-bin -buildvcs=false
8+ ENV GOPRIVATE=github.com/KiraCore/*
9+ RUN go mod tidy && go build -o sai-storage-bin -buildvcs=false
910
1011FROM ubuntu
1112
You can’t perform that action at this time.
0 commit comments